-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
52 lines (51 loc) · 983 Bytes
/
manifest.json
File metadata and controls
52 lines (51 loc) · 983 Bytes
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
50
51
52
{
"manifest_version": 2,
"version": "0.5b12",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"author": "Infocatcher",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{B5F5E8D3-AE31-49A1-AC42-78B7B1CC5CDC}"
}
},
"background": {
"scripts": ["global.js", "background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["global.js", "content.js"],
"run_at": "document_start",
"all_frames": true
}],
"permissions": [
"<all_urls>",
"activeTab",
"tabs",
"contextMenus",
"storage",
"notifications"
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_extensionName__",
"default_icon": {
"16": "icon16.png",
"24": "icon24.png"
}
},
"commands": {
"_execute_browser_action": {
"description": "__MSG_extensionName__"
}
},
"icons": {
"16": "icon16.png",
"24": "icon24.png"
}
}