-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmanifest.json
45 lines (45 loc) · 952 Bytes
/
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
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.0.0",
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"permissions": [
"contextMenus",
"storage",
"tabs",
"tts",
"notifications"
],
"action": {
"default_popup": "html/popup.html"
},
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/jquery-3.6.0.min.js", "js/content.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["images/*.png"],
"matches": ["<all_urls>"]
}
],
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"default_locale": "zh_CN",
"homepage_url": "https://www.jianshu.com/p/9d8ddfe3403e"
}