-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
50 lines (50 loc) · 1.26 KB
/
manifest-firefox.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"manifest_version": 3,
"name": "NODUS HN Radar",
"version": "0.16.11",
"description": "Same Hacker News. Less eye pain. More signal. A reading layer with dark mode, visited tracking and post-type highlighting.",
"browser_specific_settings": {
"gecko": {
"id": "hn-radar@nodus-ai.app",
"strict_min_version": "128.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"permissions": ["storage", "tabs"],
"host_permissions": [
"https://news.ycombinator.com/*",
"https://hacker-news.firebaseio.com/*"
],
"content_scripts": [
{
"matches": ["https://news.ycombinator.com/*"],
"js": ["content.js"],
"css": ["lens.css"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"],
"type": "module"
},
"action": {
"default_title": "NODUS HN Radar"
},
"sidebar_action": {
"default_title": "NODUS HN Radar",
"default_panel": "sidepanel.html",
"default_icon": {
"16": "icons/icon_16x16.png",
"32": "icons/icon_32x32.png",
"48": "icons/icon_48x48.png"
}
},
"icons": {
"16": "icons/icon_16x16.png",
"32": "icons/icon_32x32.png",
"48": "icons/icon_48x48.png",
"128": "icons/icon_128x128.png"
}
}