-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
71 lines (63 loc) · 1.4 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
{
"manifest_version": 2,
"name": "Hacker News Discussion Button",
"description": "Links to the Hacker News discussion for the current page. Preserves privacy.",
"version": "0.7.0",
"author": "Jacob Strieb",
"homepage_url": "https://github.com/jstrieb/hackernews-button",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{36225028-11da-4478-b711-ee0940433686}"
}
},
"permissions": [
"<all_urls>",
"tabs",
"storage",
"unlimitedStorage"
],
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Y"
}
},
"open_in_new_tab": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Open Hacker News discussion in a new tab"
}
},
"content_scripts": [{
"matches": [
"*://news.ycombinator.com/*"
],
"js": [
"add-latest.js"
]
}],
"background": {
"page": "background.html"
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}