-
Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathmanifest-v3.json
78 lines (78 loc) · 2.09 KB
/
manifest-v3.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Memex",
"short_name": "Memex",
"version": "0.3.3",
"description": "Search, annotate and organize what you've read online.",
"manifest_version": 3,
"icons": {
"16": "./img/browserIcons/logo-16.png",
"48": "./img/browserIcons/logo-48.png",
"128": "./img/browserIcons/logo-128.png"
},
"externally_connectable": {
"matches": [
"http://localhost:3000/*",
"https://staging.memex.social/*",
"https://memex.social/*"
]
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/browser-polyfill.js", "content_script.js"],
"css": [],
"run_at": "document_end"
}
],
"options_ui": {
"page": "./options.html#/settings"
},
"action": {
"default_popup": "./popup.html",
"default_title": "Memex",
"default_icon": {
"16": "./img/browserIcons/logo-16.png",
"48": "./img/browserIcons/logo-48.png",
"128": "./img/browserIcons/logo-128.png"
}
},
"omnibox": {
"keyword": "m"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src http: https: data: blob: wss: file:"
},
"permissions": [
"alarms",
"bookmarks",
"contextMenus",
"tabs",
"scripting",
"webNavigation",
"notifications",
"unlimitedStorage",
"storage",
"clipboardWrite"
],
"host_permissions": ["<all_urls>"],
"web_accessible_resources": [
{
"resources": [
"/lib/pdf.worker.min.js",
"/img/*",
"/content_script*.css",
"/fonts/*",
"content_script_*.js",
"file:/*",
"chrome-extension:/*",
"blob:*",
"data:*",
"filesystem:/*"
],
"matches": ["<all_urls>"]
}
]
}