forked from WebOfTrust/signify-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.chrome.json
More file actions
37 lines (36 loc) · 940 Bytes
/
manifest.chrome.json
File metadata and controls
37 lines (36 loc) · 940 Bytes
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
{
"manifest_version": 3,
"name": "Signify Browser Extension",
"version": "0.0.1",
"background": {
"service_worker": "src/pages/background/index.ts"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": {
"32": "32_keri_logo.png",
"128": "128_keri_logo.png"
}
},
"icons": {
"32": "32_keri_logo.png",
"128": "128_keri_logo.png"
},
"permissions": ["activeTab", "storage", "alarms"],
"content_scripts": [
{
"matches": ["file://*/*", "http://localhost/*", "https://*/*"],
"run_at": "document_end",
"js": ["src/pages/content/index.tsx"]
}
],
"web_accessible_resources": [
{
"resources": ["128_keri_logo.png"],
"matches": ["<all_urls>"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'"
}
}