-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 901 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 901 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
{
"manifest_version": 2,
"name": "Mute Site",
"version": "1.5.0",
"description": "Allows to instantly mute/unmute websites.",
"browser_specific_settings": {
"gecko": {
"id": "oconnerrev@gmail.com",
"strict_min_version": "120.0"
}
},
"icons": {
"48": "icons/unmute.svg",
"96": "icons/unmute.svg"
},
"permissions": [
"tabs",
"menus",
"storage"
],
"browser_action": {
"default_icon": "icons/unmute.svg",
"default_title": "Muted Websites",
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"]
},
"commands": {
"toggle-mute": {
"suggested_key": {
"default": "Ctrl+Alt+M"
},
"description": "Toggle mute/unmute for the current site"
}
}
}