-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest-firefox.json
46 lines (46 loc) · 1.05 KB
/
manifest-firefox.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
{
"manifest_version": 3,
"name": "Hacker News TL;DR",
"version": "0.3.0",
"description": "A bring-your-own-key extension for summarizing Hacker News articles with OpenAI, Anthropic, and Ollama LLMs.",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"96": "icon96.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "hn_tldr@ivanyu.me"
}
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Show options"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": ["*://news.ycombinator.com/*"],
"js": [
"browser-polyfill.js",
"content.js"
]
}
],
"background": {
"scripts": [
"browser-polyfill.js",
"options_const.js",
"background.js"
]
}
}