summaryrefslogtreecommitdiff
path: root/2016_washingmachine/chrome/manifest.json
diff options
context:
space:
mode:
authorjoak <joak@nospace.at>2017-01-22 10:43:03 +0100
committerjoak <joak@nospace.at>2017-01-22 10:43:03 +0100
commitfffcaf7231590d7172be8558389827d741dff00e (patch)
tree33a1e319e8ce1904d7362a33fa30e663a8eef031 /2016_washingmachine/chrome/manifest.json
parente955b48277bc86a41744078c032f44eeb53e38e6 (diff)
changed jquery
Diffstat (limited to '2016_washingmachine/chrome/manifest.json')
-rw-r--r--2016_washingmachine/chrome/manifest.json27
1 files changed, 27 insertions, 0 deletions
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": ["<all_urls>"],
+ "js": ["script.js", "jquery.js"]
+ }
+ ],
+ "web_accessible_resources": [
+ "animationwashingmachine.css",
+ "start.mp3",
+ "spinning.mp3",
+ "sound.mp3"
+ ]
+}