-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 968 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
{
"name": "clearminute",
"manifest_version": 2,
"version": "0.0.26",
"description": "Unlock the full potential of your 24 hours.",
"permissions": [
"tabs",
"idle",
"*://clearminute-151818.appspot.com/*",
"http://localhost:8080/"
],
"browser_action": {
"default_popup": "popup/app/build/index.html"
},
"background": {
"page": "background/index.html",
"persistent": true
},
"externally_connectable": {
"matches": [
"https://clearminute-151818.appspot.com/*",
"http://localhost:8080/"
]
},
"content_scripts": [{
"matches": [
"https://clearminute-151818.appspot.com/*",
"http://localhost:8080/"
],
"all_frames": true,
"js": [
"content-script/index.js"
]
}],
"content_security_policy": "script-src 'self' https://unpkg.com; object-src 'self'",
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
}