-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
49 lines (43 loc) · 925 Bytes
/
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
{
"name": "Notation",
"description": "Renovating the Way You Read: Notation.",
"author": "Numan Zaman Dipu",
"version": "1.0.4",
"manifest_version": 3,
"icons": {
"16": "src/icons/favicon-16.png",
"32": "src/icons/favicon-32.png",
"48": "src/icons/favicon-48.png",
"128": "src/icons/favicon-128.png"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "src/popup/popup.html"
},
"commands": {
"toggle-notation": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Trigger Notation"
},
"toggle-auto-notation": {
"suggested_key": {
"default": "Ctrl+Shift+H"
},
"description": "Enable Auto Apply"
}
}
}