-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
34 lines (33 loc) · 851 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
{
"manifest_version" : 2,
"name" : "fortune",
"short_name": "fortune",
"description": "insightful quote every time you open a new tab.",
"version" : "0.4.0",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"tabs",
"webNavigation",
"*://quotes-1271.appspot.com/*",
"http://quotes-1271.appspot.com/json",
"https://fonts.googleapis.com/*"
],
"icons": {
"16" : "assets/img/icon16.png",
"48" : "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"homepage_url": "https://github.com/orsenthil/fortune-browser-extension",
"chrome_url_overrides": {
"newtab": "fortune.html"
},
"browser_action": {
"default_title": "",
"default_icon": "assets/img/icon256.png"
}
}