-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 849 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 849 Bytes
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
{
"name": "Hacker News Keyboard Shortcuts",
"version": "1.11",
"manifest_version": 4,
"description": "Makes browsing HN easier with simple keyboard shortcuts.",
"background": {
"scripts": ["events.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://news.ycombinator.com/","*://news.ycombinator.com/news","*://news.ycombinator.com/newest","*://news.ycombinator.com/ask","*://news.ycombinator.com/x*"],
"js": ["jquery.js", "main_shortcuts.js"],
"css": ["main.css"]
},
{
"matches": ["*://news.ycombinator.com/item*"],
"js": ["jquery.js", "comment_shortcuts.js"],
"css": ["main.css"]
},
{
"matches": ["*://news.ycombinator.com/reply*"],
"js": ["jquery.js", "reply_shortcuts.js"]
}
],
"permissions": [
"*://news.ycombinator.com/"
]
}