-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (34 loc) · 896 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": "Purpose",
"description": "Better, simpler website blocker to help you use the web with purpose",
"version": "0.6",
"browser_action": {
"default_icon": "assets/purpose.png",
"default_popup": "popup/index.html"
},
"background": {
"scripts": [
"libs/raven.min.js",
"base/config_raven.js",
"models/events.js",
"models/catcher.js",
"models/catchers_provider.js",
"models/visit_intent.js",
"models/visit_intent_bank.js",
"models/tab_processor.js",
"models/catch_worker.js",
"models/purpose_app.js",
"background/index.js"
]
},
"icons": {
"700": "assets/purpose.png"
},
"options_page": "options/index.html",
"permissions": [
"storage",
"tabs"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}