-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
49 lines (47 loc) · 1.05 KB
/
manifest.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"manifest_version": 2,
"name": "Crappy Firetitle",
"version": "0.1.12",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"icons": {
"64": "icons/crapbow.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"permissions": [ "storage", "tabs", "sessions" ],
"background": {
"scripts": [ "lib/lib.js", "options/default.js", "background.js" ]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"match_about_blank": true,
"js": [ "content-script.js" ]
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"browser_action": {
"default_icon": {
"64": "icons/crapbow.png"
},
"default_title": "FireTitle",
"default_popup": "options/popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Comma",
"mac": "Alt+Comma"
},
"description": "Go to FireTitle options page"
}
}
}