-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
executable file
·45 lines (45 loc) · 1.03 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": "HackerNew",
"version": "1.3.2",
"description": "The best Hacker News extension, making HN quicker and more useful since 2012.",
"background": {
"page": "background.html"
},
"icons": {
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"images/karma.png",
"images/follow.png",
"images/unfollow.png",
"images/loading.gif",
"images/loading-light.gif",
"images/icons.png",
"images/icon.png",
"images/arrow-up.png",
"images/arrow-down.png"
],
"content_scripts": [
{
"matches": [
"http://news.ycombinator.com/*",
"http://news.ycombinator.org/*",
"http://hackerne.ws/*",
"https://news.ycombinator.com/*"
],
"css": [
"forms.css",
"hn.css"
],
"js": [
"js/libs/jquery-1.7.1.min.js",
"js/libs/jquery.hoverIntent.js",
"js/libs/jquery.autogrow.js",
"js/libs/twitter.text.js",
"js/hn.js"
]
}
]
}