-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 959 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
{
"manifest_version": 3,
"name": "网页二维码生成器",
"version": "1.1.0",
"description": "将当前网页URL转换为二维码,并在右下角显示",
"permissions": ["activeTab", "storage", "clipboardWrite"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["qrcode.min.js", "content.js"],
"css": ["styles/content.css", "styles/popup.css"]
}
],
"options_page": "options.html",
"icons": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
},
"web_accessible_resources": [
{
"resources": ["qrcode.min.js"],
"matches": ["<all_urls>"]
}
]
}