-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 819 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 819 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
{
"manifest_version": 3,
"name": "LinuxDo Star - 收藏助手",
"version": "1.2.0",
"description": "为 linux.do 论坛添加帖子和评论收藏功能,支持 GitHub Gist 同步",
"permissions": ["storage", "activeTab", "alarms"],
"host_permissions": ["https://linux.do/*", "https://api.github.com/*"],
"content_scripts": [
{
"matches": ["https://linux.do/*"],
"js": ["storage.js", "content.js"],
"css": ["content.css"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/logo-128.png",
"128": "icons/logo-128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"48": "icons/logo-128.png",
"128": "icons/logo-128.png"
}
}