summaryrefslogtreecommitdiff
path: root/2015_locomotivebrowser/firefox/manifest.json
blob: 07cbaa3d2d8f0280b146e21c44440e799bdb6b29 (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
28
{
	"manifest_version": 2,

	"name": "Locomotive",
	"description": "This extension is a locomotive ride in your browser!",
	"version": "1.0",
    "author": "joak",
	"permissions": ["activeTab"],
	"browser_action": {
		"default_icon": "icon.png",
		"default_popup": "popup.html",
        "default_title": "Flip horizontally page!",
        "browser_style": false
	},
	"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"
    ]
}