-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (42 loc) · 1.14 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
{
"manifest_version": 2,
"name": "Brightbeam",
"version": "4.2.2",
"description": "Brightbeam is a browser extension that uses interactive visualizations to show you the relationships between third parties and the sites you visit. It is a fork of the late Mozilla Lightbeam.",
"homepage_url": "https://github.com/digitalmethodsinitiative/brightbeam",
"developer": {
"name": "Stijn Peeters",
"url": "https://tools.digitalmethods.net"
},
"browser_specific_settings": {
"gecko": {
"update_url": "https://extensions.digitalmethods.net/updates.json"
}
},
"icons": {
"48": "images/brightbeam-48.png",
"96": "images/brightbeam-96.png"
},
"permissions": [
"webRequest",
"<all_urls>",
"tabs",
"cookies",
"storage",
"downloads",
"privacy"
],
"browser_action": {
"default_icon": "images/brightbeam-48.png",
"default_title": "Brightbeam"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' blob:; object-src 'self';",
"background": {
"scripts": [
"ext-libs/dexie.js",
"js/store.js",
"js/capture.js",
"js/background.js"
]
}
}