From fffcaf7231590d7172be8558389827d741dff00e Mon Sep 17 00:00:00 2001 From: joak Date: Sun, 22 Jan 2017 10:43:03 +0100 Subject: changed jquery --- 2016_washingmachine/chrome/manifest.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 2016_washingmachine/chrome/manifest.json (limited to '2016_washingmachine/chrome/manifest.json') diff --git a/2016_washingmachine/chrome/manifest.json b/2016_washingmachine/chrome/manifest.json new file mode 100644 index 0000000..bd576b3 --- /dev/null +++ b/2016_washingmachine/chrome/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": [""], + "js": ["script.js", "jquery.js"] + } + ], + "web_accessible_resources": [ + "animationwashingmachine.css", + "start.mp3", + "spinning.mp3", + "sound.mp3" + ] +} -- cgit v1.2.3