-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
41 lines (35 loc) · 910 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
{
"manifest_version": 2,
"name": "Scua",
"version": "1.1",
"description": "Decentralized identity experiment.",
"icons": {
"48": "assets/icons/icon-48.png",
"96": "assets/icons/icon-96.png"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": ["https://twitter.com/*"],
"js": ["ui.js"]
}
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-inline'; connect-src 'self' wss://* https://dns.google https://cloudflare-dns.com https://*.preload.ipfs.io https://*.did.microsoft.com",
"browser_action": {
"default_icon": {
"19": "assets/buttons/button-19.png",
"38": "assets/buttons/button-38.png"
},
"default_title": "Identity",
"default_popup": "build/scua.html"
},
"browser_specific_settings": {
"gecko": {
"id": "scua@twinql.com"
}
}
}