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
|
{
"manifest_version": 3,
"name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.9.0.9",
"version_name": "0.9.0-dev.9",
"minimum_chrome_version": "88",
"icons": {
"32": "static/img/icon.png",
"128": "static/img/logo.png"
},
"permissions": [
"unlimitedStorage",
"activeTab",
"scripting"
],
"optional_permissions": [
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_icon": {
"32": "static/img/icon.png"
},
"default_title": "Taler",
"default_popup": "static/popup.html"
},
"background": {
"service_worker": "dist/background.js"
}
}
|