-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (42 loc) · 1.06 KB
/
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
{
"manifest_version": 3,
"name": "Chrome Extension Package",
"version": "1.0",
"description": "chrome浏览器插件包",
"icons": {
"16": "icons/icon.png",
"19": "icons/icon.png",
"38": "icons/icon.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"action": {
"default_title": "chrome浏览器插件包",
"default_icon": "icons/icon.png",
"default_popup": "popup/index.html"
},
"background": {
"service_worker": "background/service-worker.js"
},
"permissions": ["tabs", "storage", "activeTab", "alarms"],
"content_scripts": [
{
"matches": ["https://*/*"],
"js": ["content/content.js"],
"all_frames": true,
"run_at": "document_end",
"match_about_blank": true
}
],
"chrome_url_overrides": {
"newtab": "newTab/index.html"
},
"options_page": "options/index.html",
"web_accessible_resources": [
{
"resources": ["popup/*", "contentPage/*", "newTab/*", "assets/*", "js/*", "options/*"],
"matches": ["https://*/*"],
"use_dynamic_url": true
}
]
}