-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
58 lines (58 loc) · 1.46 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
{
"name": "Edge Utilities",
"description": "Utility extensions for Microsoft Edge to enhance your browser experience.",
"author": {
"name": "Devyn Spencer",
"url": "https://github.com/devynspencer"
},
"manifest_version": 3,
"icons": {
"16": "assets/icons/brain-16.png",
"32": "assets/icons/brain-32.png",
"48": "assets/icons/brain-48.png",
"128": "assets/icons/brain-128.png"
},
"permissions": [
"contextMenus",
"notifications",
"storage",
"tabGroups",
"tabs"
],
"options_ui": {
"page": "src/html/options.html",
"open_in_tab": true
},
"action": {
"default_title": "Edge Utilities",
"default_icon": "assets/icons/brain-48.png",
"default_popup": "src/html/popup.html"
},
"commands": {
"toggle-pin-current-tab": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Pin current browser tab."
},
"mute-all-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
},
"description": "Mute all browser tabs."
},
"organize-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Group, sort, and purge browser tabs based on user configuration. See documentation for config examples."
}
},
"background": {
"service_worker": "src/js/background.js"
},
"version": "0.0.1"
}