-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
34 lines (30 loc) · 893 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
{
"manifest_version": 2,
"name": "Life Clock For New Tab",
"description": "This extension tells you the actual current hours of your life with random quotes and image every time you open a new blank tab.",
"version": "1.10",
"content_security_policy": "script-src 'self' https://api.flickr.com https://*.flickr.com https://andruxnet-random-famous-quotes.p.mashape.com/ ; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": ["jquery-3.2.0.min.js", "background.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["jquery-3.2.0.min.js", "moment.min.js", "content.js"]
}
],
"chrome_url_overrides" : {
"newtab": "content.html"
},
"permissions": [
"activeTab",
"tabs",
"storage"
]
}