-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (40 loc) · 1.17 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
{
"manifest_version": 2,
"name": "QRCoder",
"short_name": "QRCoder",
"author": "Christian Kühl",
"description": "This extension can generate QR codes from the URL, selected text or links of the current website.",
"version": "1.2",
"homepage_url": "https://github.com/chrkhl/chrome-qrcoder",
"browser_action": {
"default_icon": "assets/icon.png",
"default_title": "QRCoder"
},
"background": {
"scripts": ["scripts/extension.js"],
"persistent": false
},
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"content_security_policy": "script-src 'self' https://www.gstatic.com/; object-src 'self'",
"web_accessible_resources": [
"assets/icon.png",
"assets/icon-active.png",
"assets/home.png",
"assets/lock-closed.png",
"assets/lock-open.png",
"assets/text-selection.png",
"assets/text-selection-active.png",
"assets/link.png",
"assets/link-active.png",
"assets/fullsize.png",
"assets/fullsize-active.png"
]
}