wallet-core/packages/taler-wallet-webextension/manifest-v3.json
Sebastian bc817a638d
#7120 manifest v3: first iteration working
new permission needed: scripting
chrome.browserAction -> chrome.action
webRequestBlocking is not possible anymore
chrome.extension.getUrl -> chrome.runtime.getUrl
new serviceWorkerHttpLib: using fetch
new serviceWorkerCryptoWorkerFactory: using syncCryptoImpl
few other minor changes

still missing some other changes like migrating setTimeout to chrome.alarms api
2022-01-16 17:55:01 -03:00

36 lines
781 B
JSON

{
"manifest_version": 3,
"name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.8.1.15",
"version_name": "0.8.1-dev.15",
"minimum_chrome_version": "88",
"icons": {
"32": "static/img/icon.png",
"128": "static/img/logo.png"
},
"permissions": [
"unlimitedStorage",
"activeTab",
"scripting"
],
"optional_permissions": [
"webRequest",
"webRequestBlocking"
],
"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"
}
}