-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 1011 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 1011 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
30
31
32
33
{
"manifest_version": 3,
"name": "SuperSubstack",
"version": "2.0.0",
"description": "Better Substack experience: reading progress, bionic reading, and article archiving.",
"permissions": ["storage", "activeTab", "contextMenus", "downloads", "scripting"],
"host_permissions": ["*://substack.com/*", "*://*.substack.com/*", "*://*/*"],
"content_scripts": [
{
"matches": ["*://substack.com/*", "*://*.substack.com/*", "*://*/*"],
"js": ["content.js"],
"css": ["content.css"],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "SuperSubstack",
"default_icon": {
"16": "icons/supersubstack_icon.png",
"48": "icons/supersubstack_icon.png",
"128": "icons/supersubstack_icon.png"
}
},
"icons": {
"16": "icons/supersubstack_icon.png",
"48": "icons/supersubstack_icon.png",
"128": "icons/supersubstack_icon.png"
}
}