forked from PriyankitSingh/Automatic-Status-Indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (34 loc) · 867 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
{
"manifest_version": 2,
"name": "Status Indicator",
"description": "This extension will track user activity to determine status",
"version": "1.0",
"options_page": "dashboard.html",
"background" : {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"idle",
"identity",
"tabs"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file://*"],
"js": [
"index.js"
],
"web_accessible_resources": [
"index.html"
]
}
],
"content_security_policy":"script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://ajax.googleapis.com https://maxcdn.bootstrapcdn.com https://gitcdn.github.io; object-src 'self'"
}