Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Console Wallet",
"version": "1.1.1",
"manifest_version": 3,
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/content-script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"src\/offscreen.html",
"src\/offscreen.ts"
],
"matches": [
"chrome-extension:\/\/*\/*"
]
}
],
"permissions": [
"storage",
"activeTab",
"offscreen",
"tabs"
]
}