-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
77 lines (73 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"manifest_version": 2,
"name": "Stale News Warning",
"short_name": "Stale News",
"description": "This extension will warn you if you are reading an old news article",
"version": "0.11",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [ "*://www.bbc.co.uk/news/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "bbc.js" ]
},
{
"matches": [ "*://*.cnn.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "cnn.js" ]
},
{
"matches": [ "*://*.dailymail.co.uk/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "dailymail.js" ]
},
{
"matches": [ "*://www.theguardian.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "theguardian.js" ]
},
{
"matches": [
"*://www.huffingtonpost.co.uk/*",
"*://www.huffingtonpost.com/*"
],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "huffingtonpost.js" ]
},
{
"matches": [ "*://www.independent.co.uk/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "independent.js" ]
},
{
"matches": [ "*://www.indiatimes.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "indiatimes.js" ]
},
{
"matches": [ "*://timesofindia.indiatimes.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "timesofindia.js" ]
},
{
"matches": [ "*://www.nytimes.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "nytimes.js" ]
},
{
"matches": [ "*://news.sky.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "skynews.js" ]
},
{
"matches": [ "*://stackoverflow.com/questions/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "stackoverflow.js" ]
},
{
"matches": [ "*://www.telegraph.co.uk/news/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "telegraph.js" ]
},
{
"matches": [ "*://news.yahoo.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "yahoo.js" ]
},
{
"matches": [ "*://uk.news.yahoo.com/*" ],
"js": [ "jquery-2.1.4.min.js", "date-check.js", "yahoo-uk.js" ]
}
]
}