-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
50 lines (50 loc) · 1019 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
42
43
44
45
46
47
48
49
50
{
"name": "Privacy Monitor by Osano",
"description": "We read the fine print, so you don't have to. Surf the web with our privacy plugin and receive attorney created trust scores.",
"version": "1.0.36",
"author": "Osano, Inc., A Public Benefit Corporation",
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"tabs",
"<all_urls>"
],
"background": {
"scripts": [
"js/localforage.min.js",
"js/background.js"
],
"persistent": false
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/circles.js",
"js/contentscript.js"
],
"css": [
"css/content-styles.css"
]
}
],
"browser_action": {
"default_title": "Get Privacy score",
"default_icon": "css/images/iconGray.png"
},
"icons": {
"48": "icons/rounded-48x48.png",
"128": "icons/rounded-128x128.png"
},
"web_accessible_resources": [
"css/images/*.svg",
"css/images/*.png",
"icons/*"
],
"manifest_version": 2
}