-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 939 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
{
"name": "URL to QR code",
"version": "1.0",
"description": "Turns the current tab’s URL into a QR code. Alternatively the user can use the context menu on a link to get that link’s QR code.",
"icons": {
"16": "logo/qr-16.png",
"32": "logo/qr-32.png",
"64": "logo/qr-64.png"
},
"developer": {
"name": "Martijn van der Ven",
"url": "https://vanderven.se/martijn/"
},
"browser_action": {
"default_icon": {
"16": "logo/qr-16.png",
"32": "logo/qr-32.png",
"64": "logo/qr-64.png"
},
"default_popup": "src/popup.html",
"default_title": "QR code for the current tab’s URL."
},
"background": {
"scripts": [
"src/background.js"
],
"persistent": true
},
"manifest_version": 2,
"permissions": [
"activeTab",
"contextMenus"
]
}