-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmanifest.json
executable file
·54 lines (54 loc) · 1.1 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
{
"manifest_version": 3,
"version": "2.1.5",
"name": "ArchiveBox",
"description": "Collect URLs and preserve them using a remote ArchiveBox server",
"permissions": [
"storage",
"scripting",
"activeTab",
"contextMenus",
"unlimitedStorage"
],
"optional_permissions": [
"cookies",
"history",
"bookmarks"
],
"optional_host_permissions": [
"*://*\/*"
],
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
},
"action": {
"default_title": "Save to ArchiveBox",
"default_icon": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
}
},
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [{
"resources": ["popup.css", "popup.js"],
"matches": ["*://*\/*"]
}],
"commands": {
"save-to-archivebox-action": {
"description": "Save URL to ArchiveBox",
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
}
}
}
}