-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
65 lines (65 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
{
"manifest_version": 3,
"name": "Workflowy Encrypter",
"version": "1.0.3",
"description": "Seamless client-side encryption for Workflowy",
"author": "contact@alpafyonluoglu.dev",
"icons": {
"16": "/src/logo_16.png",
"32": "/src/logo_32.png",
"48": "/src/logo_48.png",
"128": "/src/logo_128.png"
},
"content_security_policy": {
"extension_pages": "default-src 'self'"
},
"action": {
"default_title": "Workflowy Encrypter",
"default_popup": "./popup/popup.html"
},
"background": {
"service_worker": "./background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["*://*.workflowy.com/*"],
"run_at": "document_end",
"js": ["/scripts/content.js"]
}
],
"web_accessible_resources": [
{
"resources": [
"/scripts/lock.js",
"/src/logo_128.png",
"/src/logo_w_128.png",
"/src/key_128.png",
"/src/ss1.png",
"/src/ss1_dark.png",
"/styles/popup.css",
"/styles/popup_dark.css",
"/styles/popup_type0.css",
"/styles/popup_type0_dark.css",
"/styles/popup_type1.css",
"/styles/popup_type1_dark.css",
"/styles/toast.css",
"/styles/welcome.css",
"/styles/welcome_dark.css",
"/layouts/toast_container.html",
"/layouts/popup_container.html",
"/layouts/popup_close.html",
"/layouts/popup_welcome_1.html",
"/layouts/popup_welcome_2.html",
"/layouts/popup_welcome_3.html",
"/layouts/popup_welcome_4.html"
],
"matches": ["*://*.workflowy.com/*"]
}
],
"permissions": [
],
"host_permissions": [
"*://*.workflowy.com/*"
]
}