-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
36 lines (36 loc) · 955 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
{
"manifest_version": 2,
"name": "Startpage",
"version": "3.4.2",
"options_ui": {
"page": "/settings/settings.html"
},
"permissions": ["tabs", "storage", "file://*/*", "unlimitedStorage"],
"background": {
"scripts": ["/background/background.js" ]
},
"content_scripts":[
{
"matches": ["<all_urls>"],
"js": [ "jquery.js", "/content/blob/blob.js"],
"css": ["/content/blob/blob.css"]
},
{
"matches": ["<all_urls>"],
"js": [ "jquery.js", "/content/autoIcon/autoIcon.js"]
}
],
"web_accessible_resources": [
"/content/blob/fonts/GothamRoundedLight.otf",
"/startpage/img/*"
],
"icons": {
"540": "/startpage/img/icon.png"
},
"browser_action": {
"default_icon": {
"540": "/startpage/img/icon.png"
}
},
"content_security_policy": "script-src 'self' https://api.darksky.net; object-src 'self'"
}