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
28
29
|
{
"manifest_version": 2,
"name": "Locomotive",
"description": "This extension is a locomotive ride in your browser!",
"version": "1.0",
"author": "joak",
//icon by Hans-Peter Scholz CC-BY-SA 3.0 http://commons.wikimedia.org/wiki/Category:Locomotives#mediaviewer/File:Meyer_Lok.png
//sound by Keith Burnett CC http://www.freesound.org/people/keithpeter/sounds/125211/
"permissions": ["activeTab"],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"48": "icon48.png",
"128":"icon.png"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["script.js", "jquery.js"]
}
],
"web_accessible_resources": [
"animationlocomotive.css",
"start.mp3",
"sound.mp3"
]
}
|