-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
executable file
·50 lines (50 loc) · 1.17 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
{
"manifest_version": 2,
"name": "Pegasus",
"short_name": "pegasus",
"description": "Meet 'the Tangle' from your browser",
"version": "0.12.0",
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' 'sha256-IThiKMnsg0UHaLmP7sJxZpd/ohvINImwjxFJyxGFSlk='; object-src 'self'",
"browser_action": {
"default_popup": "packages/popup/build/index.html",
"default_title": "Pegasus"
},
"author": "Alessandro Manfredi",
"permissions": [
"notifications",
"storage",
"unlimitedStorage"
],
"icons": {
"64": "packages/popup/build/material/logo/pegasus-64.png",
"128": "packages/popup/build/material/logo/pegasus-128.png"
},
"background": {
"scripts": [
"dist/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://*/*",
"file://*/*",
"http://*/*"
],
"js": [
"dist/injection.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"web_accessible_resources": [
"dist/inpage-client.js"
],
"externally_connectable": {
"ids": [
"*"
]
}
}