-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
47 lines (46 loc) · 856 Bytes
/
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
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "@dynamichistory"
}
},
"name": "DynamicHistory",
"short_name": "DynamicHistory",
"author": "nulldev",
"description": "Automagically delete history based on the keywords on the page!",
"version": "2.17",
"options_ui": {
"page": "options.html",
"chrome_style": true,
"browser_style": true
},
"permissions": [
"activeTab",
"tabs",
"<all_urls>",
"history",
"storage"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
},
"sandbox": {
"pages": ["history_processor_sandbox.html"]
}
}