clear-wallet/src/extension/manifest.json

65 lines
1.7 KiB
JSON
Raw Normal View History

2022-10-07 17:07:59 +00:00
{
"manifest_version": 3,
2022-10-16 22:25:20 +00:00
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
2023-03-11 15:30:46 +00:00
"version": "1.2.5",
"version_name": "1.2.5",
2022-10-07 17:07:59 +00:00
"icons": {
"16": "assets/extension-icon/wallet_16.png",
"32": "assets/extension-icon/wallet_32.png",
"48": "assets/extension-icon/wallet_48.png",
"128": "assets/extension-icon/wallet_128.png"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "assets/extension-icon/wallet_16.png",
"32": "assets/extension-icon/wallet_32.png",
"48": "assets/extension-icon/wallet_48.png",
"128": "assets/extension-icon/wallet_128.png"
}
},
2023-02-21 20:28:15 +00:00
"minimum_chrome_version": "103",
2022-10-07 17:07:59 +00:00
"permissions": [
2022-10-10 00:52:23 +00:00
"notifications",
2022-10-07 17:07:59 +00:00
"storage",
"alarms",
"unlimitedStorage",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
2022-11-02 15:11:16 +00:00
"*://*/*"
2022-10-07 17:07:59 +00:00
],
"background": {
"service_worker": "/src/extension/serviceWorker.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_start",
"js": ["/src/extension/content.ts"]
2023-02-21 20:28:15 +00:00
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_start",
"js": ["/src/extension/metamask-stub.js"],
"world": "MAIN"
2022-10-07 17:07:59 +00:00
}
],
"web_accessible_resources": [{
2022-11-02 15:11:16 +00:00
"resources": ["src/extension/inject.js"],
2022-10-07 17:07:59 +00:00
"matches": ["<all_urls>"]
}]
}