summaryrefslogtreecommitdiff
path: root/2016_washingmachine/firefox/manifest.json
blob: bd576b308393b879b56c0dccd24528447b6f116d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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"
    ]
}