-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmanifest.json
45 lines (45 loc) · 987 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
{
"manifest_version": 3,
"version": "2.1.1",
"name": "ArchiveBox",
"description": "Collect URLs with timestamps and tags for ArchiveBox",
"permissions": [
"storage",
"scripting",
"tabs",
"activeTab",
"history",
"bookmarks",
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Save to ArchiveBox",
"default_icon": {
"16": "static/icon16.png",
"32": "static/icon32.png",
"48": "static/icon48.png",
"128": "static/icon128.png"
}
},
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [{
"resources": ["popup.css", "popup.js"],
"matches": ["<all_urls>"]
}],
"commands": {
"save-to-archivebox-action": {
"description": "Save URL to ArchiveBox",
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
}
}
}
}