-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.02 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
{
"name": "Leia Parental Control",
"description": "A chrome extension for parents to monitor and limit their kids time on the internet.",
"version": "1.3.10",
"manifest_version": 2,
"options_ui": {
"page": "app/options.html",
"chrome_style": true
},
"icons": {
"128": "images/Parent Guardian-96.png"
},
"browser_action": {
"default_icon": "images/Parent Guardian-96.png",
"default_popup": "app/popup.html"
},
"background": {
"page": "app/background.html"
},
"permissions": [
"activeTab",
"https://ajax.googleapis.com/",
"tabs",
"background",
"storage",
"identity",
"idle"
],
"content_scripts": [
{
"js": [
"dist/app/overlay.js"
],
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"css": [
"app/overlay.css"
]
}
],
"content_security_policy": "script-src 'self' https://ajax.googleapis.com https://www.gstatic.com https://leiaparentalcontrol.firebaseio.com https://s-usc1c-nss-124.firebaseio.com; object-src 'self'"
}