-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
28 lines (28 loc) · 966 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
{
"name": "二维码生成器",
"description": "生成当前页面二维码,并可进行编辑重新生成",
"offline_enabled": true,
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icons/icon_16.png",
"32": "images/icons/icon_32.png",
"64": "images/icons/icon_64.png",
"48": "images/icons/icon_48.png",
"128": "images/icons/icon_128.png"
},
"default_title": "二维码生成器"
},
"icons": {
"16": "images/icons/icon_16.png",
"32": "images/icons/icon_32.png",
"64": "images/icons/icon_64.png",
"48": "images/icons/icon_48.png",
"128": "images/icons/icon_128.png"
},
"manifest_version": 2,
"homepage_url" : "https://github.com/mkanako/chrome-qrcode",
"permissions": [ "tabs", "http://*/*", "https://*/*" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.3"
}