diff options
Diffstat (limited to '2016_lamp_browser/firefox/manifest.json')
-rw-r--r-- | 2016_lamp_browser/firefox/manifest.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2016_lamp_browser/firefox/manifest.json b/2016_lamp_browser/firefox/manifest.json new file mode 100644 index 0000000..8d26e31 --- /dev/null +++ b/2016_lamp_browser/firefox/manifest.json @@ -0,0 +1,19 @@ +{ + "manifest_version": 2, + + "name": "Lamp", + "description": "If you turn off this lamp it will darken your browser!", + "version": "1.0", + "author": "joak", + "permissions": ["activeTab"], + "browser_action": { + "default_icon": "icon.png", + "default_popup": "popup.html", + "default_title": "Turns off the light!" + }, + "icons": { + "16": "icon-16.png", + "32": "icon-32.png", + "64": "icon-64.png" + } +} |