blob: 03017702bdb66755808dddd8797afc48b534229e (
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
|
{
"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"
]
}
|