-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
37 lines (37 loc) · 936 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
{
"name": "LND Chrome Extension",
"description": "Allows web site basic authentication using a Lightning Network payment or message signature.",
"version": "1.2.6",
"icons": {
"16": "assets/icons/bolt-16.png",
"24": "assets/icons/bolt-24.png",
"32": "assets/icons/bolt-32.png",
"64": "assets/icons/bolt-64.png",
"128": "assets/icons/bolt-128.png"
},
"options_page": "options.html",
"permissions": [
"contextMenus",
"activeTab",
"http://*/*",
"https://*/*",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [ "background.js" ],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "assets/icons/bolt-16.png",
"24": "assets/icons/bolt-24.png",
"32": "assets/icons/bolt-32.png",
"64": "assets/icons/bolt-64.png",
"128": "assets/icons/bolt-128.png"
},
"default_title": "LND Chrome Extension",
"default_popup": "menu.html"
},
"manifest_version": 2
}