Created
November 24, 2017 21:25
-
-
Save cypressious/5fecd8e9755821e3d1d42bb2c5e42960 to your computer and use it in GitHub Desktop.
Kotlin Firefox Extension manifest.json https://medium.com/@Cypressious/your-second-firefox-extension-in-kotlin-bafd91d87c41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "Beastify", | |
"version": "1.0", | |
"permissions": [ | |
"activeTab" | |
], | |
"browser_action": { | |
"default_icon": "icons/beasts-32.png", | |
"default_title": "Beastify", | |
"default_popup": "popup/choose_beast.html" | |
}, | |
"web_accessible_resources": [ | |
"beasts/frog.jpg", | |
"beasts/turtle.jpg", | |
"beasts/snake.jpg" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment