-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
80 lines (80 loc) · 1.93 KB
/
Copy pathmanifest.json
File metadata and controls
80 lines (80 loc) · 1.93 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Vaultonomy",
"action": {
"default_title": "Vaultonomy (Reddit Vault)"
},
"icons": {
"16": "img/vaultonomy_icon_16.png",
"32": "img/vaultonomy_icon_32.png",
"48": "img/vaultonomy_icon_48.png",
"128": "img/vaultonomy_icon_128.png"
},
"manifest_version": 3,
"description": "Manage your Reddit account's Vault from the browser.",
"permissions": [
"scripting",
"sidePanel",
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"https://www.reddit.com/*",
"https://new.reddit.com/*",
"https://old.reddit.com/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://www.reddit.com/*",
"https://new.reddit.com/*",
"https://old.reddit.com/*"
],
"js": ["reddit-detect-user-interest-contentscript.js"]
}
],
"web_accessible_resources": [
{
"resources": ["*.js", "*.js.map"],
"matches": [
"https://www.reddit.com/*",
"https://new.reddit.com/*",
"https://old.reddit.com/*",
"http://vaultonomy.localhost:5173/*"
]
}
],
"side_panel": {
"default_path": "ui.html"
},
"commands": {
"next_address_activity_tool": {
"suggested_key": {
"default": "Alt+N"
},
"description": "Switch to the next Address Activity Tool"
},
"prev_address_activity_tool": {
"suggested_key": {
"default": "Alt+Shift+N"
},
"description": "Switch to the previous Address Activity Tool"
},
"next_address_collectables_tool": {
"suggested_key": {
"default": "Alt+M"
},
"description": "Switch to the next Address Collectables Tool"
},
"prev_address_collectables_tool": {
"suggested_key": {
"default": "Alt+Shift+M"
},
"description": "Switch to the previous Address Collectables Tool"
}
}
}