-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 1.33 KB
/
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
47
{
"name": "World Cup Live 2018",
"version": "1.0.1",
"update_url": "https://raw.githubusercontent.com/Software202/World-Cup-Live-2018/master/updates.xml",
"description": "World Cup Live 2018 is a fantastic chrome browser extension that keeps you up-to-date to the current 2018 World Cup features including live score updates and more!",
"permissions" : ["declarativeContent", "activeTab", "storage", "contextMenus"],
"background":
{
"scripts" :
[
"moment.js",
"jsonQ.min.js",
"lodash.js",
"difference.js",
"background.js",
"live-background.js"
],
"persistent" : false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/fc.png",
"32": "images/fc.png",
"48": "images/fc.png",
"128": "images/fc.png"
}
},
"icons": {
"16": "images/fc.png",
"32": "images/fc.png",
"48": "images/fc.png",
"128": "images/fc.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"jquery.js",
"get-live.js"
],
"css" : ["goal.css"]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
}