-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (37 loc) · 797 Bytes
/
manifest.json
File metadata and controls
47 lines (37 loc) · 797 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
{
"manifest_version": 2,
"name": "MuteTabsMatchingPattern",
"version": "1.0",
"description": "Toggles mute of all tabs matching pattern",
"icons": {
"96": "icons/mute-tabs-96.png",
"48": "icons/mute-tabs-48.png"
},
"applications": {
"gecko": {
"id": "muteTabsMatchingPattern@river.me"
}
},
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "tab_mute_toggle_options.html"
},
"browser_action": {
"default_icon": { "32": "icons/mute-tabs-32.png", "16": "icons/mute-tabs-16.png" },
"default_title": "Mute Twitch"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+O"
},
"description": "Toggle mute of all tabs matching pattern"
}
},
"permissions": [
"tabs",
"storage"
]
}