forked from gabrielecirulli/hn-special
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
63 lines (56 loc) · 1.68 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
{
"manifest_version": 2,
"name": "HN Special - An addition to Hacker News",
"description": "This extension refreshes the visual style of Hacker News and adds a few features, like infinite scrolling. Everything is togglable.",
"version": "1.3.6",
"homepage_url": "http://gabrielecirulli.github.io/hn-special/",
"permissions": [
"https://news.ycombinator.com/",
"http://news.ycombinator.com/"
],
"optional_permissions": [
"history"
],
"background" : {
"scripts": [
"lib/extras/background.js"
]
},
"content_scripts": [
{
"matches": [ "http://news.ycombinator.com/*", "https://news.ycombinator.com/*" ],
"js": [
"lib/tools/utility.js",
"lib/settings.js",
"lib/modules/visual_theme.js",
"lib/modules/high_contrast.js",
"lib/modules/gray_visited_links.js",
"lib/modules/open_links_in_new_tabs.js",
"lib/modules/highlight_links_when_returning.js",
"lib/modules/infinite_scrolling.js",
"lib/modules/accurate_domain_names.js",
"lib/modules/mark_as_read.js",
"lib/modules/fold_comments.js",
"lib/modules/sticky_header.js",
"lib/modules/user_tooltips.js"
],
"css": [ "lib/extras/hn_theme.css" ],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"lib/defaults.json",
"lib/extras/permissions.html",
"lib/extras/permissions.js",
"resources/gear.svg",
"resources/arrow-up.svg",
"resources/arrow-down.svg",
"resources/logo.svg"
],
"icons": {
"16": "promo/icons/icon16.png",
"32": "promo/icons/icon32.png",
"48": "promo/icons/icon48.png",
"128": "promo/icons/icon128.png"
}
}