-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·46 lines (46 loc) · 1002 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
{
"name": "Soothe",
"description": "Browse the web with peace of mind.",
"version": "0.0.0.1",
"manifest_version": 2,
"icons": {
"16": "public/img/soothe-icon-16.png",
"48": "public/img/soothe-icon-48.png",
"128": "public/img/soothe-icon-128.png"
},
"background": {
"scripts": [
"bower_components/firebase/firebase.js",
"background/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content/searchDOM.js",
"content/blur.js",
"content/content.js",
"bower_components/sentimood/sentimood.js"
],
"run_at": "document_start"
}
],
"permissions": [
"tabs",
"http://*/*",
"activeTab",
"storage",
"debugger",
"contextMenus"
],
"web_accessible_resources": [],
"content_security_policy": "script-src 'self' https://cdn.firebase.com https://*.firebaseio.com 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_title": "Soothe",
"default_popup": "popup/popup.html"
}
}