diff options
Diffstat (limited to '2016_washingmachine/firefox/manifest.json')
-rw-r--r-- | 2016_washingmachine/firefox/manifest.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/2016_washingmachine/firefox/manifest.json b/2016_washingmachine/firefox/manifest.json new file mode 100644 index 0000000..bd576b3 --- /dev/null +++ b/2016_washingmachine/firefox/manifest.json @@ -0,0 +1,27 @@ +{ + "manifest_version": 2, + + "name": "washing machine", + "description": "This extension simulates a washing machine in your browser!", + "version": "1.0", + "author": "joak", + "permissions": ["activeTab"], + "browser_action": { + "default_icon": "icon.png", + "default_popup": "popup.html" + }, + "icons": { + "128": "icon128.png" + }, + "content_scripts": [{ + "matches": ["<all_urls>"], + "js": ["script.js", "jquery.js"] + } + ], + "web_accessible_resources": [ + "animationwashingmachine.css", + "start.mp3", + "spinning.mp3", + "sound.mp3" + ] +} |