-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
62 lines (62 loc) · 1.54 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
{
"manifest_version": 2,
"name": "MuteTab",
"description": "Take control of noisy tabs: mute by default, blacklists, and more",
"version": "3.0.11",
"icons": {
"16": "build/img/favicon.png",
"48": "build/img/favicon.png",
"128": "build/img/favicon.png"
},
"permissions": [
"tabs", "storage", "contextMenus"
],
"browser_action": {
"default_title": "MuteTab",
"default_icon": "build/img/favicon.png",
"default_popup": "build/html/popup.html"
},
"commands": {
"make_current_tab_only_unmuted": {
"description": "Unmute current tab and mute others"
},
"toggle_current_muted": {
"description": "Toggle muted for current tab",
"suggested_key": {
"default": "Alt+Shift+M"
}
},
"mute_background": {
"description": "Mute all background tabs",
"suggested_key": {
"default": "Alt+Shift+B"
}
},
"mute_all": {
"description": "Mute all tabs",
"suggested_key": {
"default": "Alt+Shift+A"
}
},
"unmute_all": {
"description": "Unmute all tabs"
},
"change_privacy_mode": {
"description": "Toggle privacy mode",
"suggested_key": {
"default": "Alt+Shift+P"
}
},
"show_unducked": {
"description": "Show unducked"
},
"mute_unducked": {
"description": "Mute unducked"
}
},
"options_page": "build/html/options.html",
"background": {
"scripts": ["build/js/background-bundle.js"],
"persistent": true
}
}