forked from etcet/HNES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.25 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
{
"name": "Hacker News Enhancement Suite",
"short_name": "HNES",
"version": "1.3.4.1",
"description": "Hacker News Enhanced.",
"manifest_version": 2,
"background": {
"scripts": ["background.js"]
},
"permissions": ["tabs"],
"icons": {
"16" : "images/icon-16.png",
"48" : "images/icon-48.png",
"128" : "images/icon-128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"all_frames": true,
"css": [ "style.css" ],
"js": [
"js/jquery-1.7.2.min.js",
"js/linkify/jquery.linkify-1.0.js",
"js/linkify/plugins/jquery.linkify-1.0-twitter.js",
"js/hn.js"],
"matches": [
"http://news.ycombinator.com/*",
"https://news.ycombinator.com/*",
"http://news.ycombinator.net/*",
"https://news.ycombinator.net/*",
"http://hackerne.ws/*",
"https://hackerne.ws/*",
"http://news.ycombinator.org/*",
"https://news.ycombinator.org/*"]
},
{
"matches": ["http://hckrnews.com/*"],
"run_at": "document_end",
"js": ["js/jquery-1.7.2.js", "js/hn.js"]
}
],
"web_accessible_resources": [
"images/spin.gif"
]
}