forked from rNeomy/auto-tab-discard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
105 lines (104 loc) · 2.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"manifest_version": 2,
"version": "0.5.0",
"default_locale": "en",
"name": "Auto Tab Discard",
"description": "__MSG_app_description__",
"icons": {
"16": "data/icons/16.png",
"18": "data/icons/18.png",
"19": "data/icons/19.png",
"32": "data/icons/32.png",
"36": "data/icons/36.png",
"38": "data/icons/38.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png"
},
"storage": {
"managed_schema": "schema.json"
},
"permissions": [
"idle",
"storage",
"tabs",
"*://*/*",
"contextMenus",
"notifications",
"alarms"
],
"background": {
"persistent": false,
"scripts": [
"firefox.js",
"hidden.js",
"background.js",
"plugins.js",
"modes/number.js",
"menu.js"
]
},
"content_scripts": [{
"match_about_blank": true,
"matches": ["<all_urls>"],
"js": [
"data/inject/watch.js"
],
"run_at": "document_start",
"all_frames": true
}],
"browser_action": {
"browser_style": true,
"default_popup": "data/popup/index.html",
"theme_icons": [{
"light": "data/icons/light/16.png",
"dark": "data/icons/dark/16.png",
"size": 16
}, {
"light": "data/icons/light/32.png",
"dark": "data/icons/dark/32.png",
"size": 32
}, {
"light": "data/icons/light/48.png",
"dark": "data/icons/dark/48.png",
"size": 48
}, {
"light": "data/icons/light/64.png",
"dark": "data/icons/dark/64.png",
"size": 64
}]
},
"options_ui": {
"page": "data/options/index.html",
"chrome_style": true,
"open_in_tab": true
},
"homepage_url": "https://add0n.com/tab-discard.html",
"commands": {
"discard-tab": {
"description": "__MSG_cmd_discard_tab__"
},
"discard-tree": {
"description": "__MSG_cmd_discard_tree__"
},
"discard-window": {
"description": "__MSG_cmd_discard_window__"
},
"discard-other-windows": {
"description": "__MSG_cmd_discard_other_windows__"
},
"discard-tabs": {
"description": "__MSG_cmd_discard_tabs__"
},
"move-previous": {
"description": "__MSG_cmd_move_previous__"
},
"move-next": {
"description": "__MSG_cmd_move_next__"
},
"close": {
"description": "__MSG_cmd_close__"
}
}
}