{
    "manifest_version": 3,
    "short_name": "BlockchainWallet",
    "name": "BlockchainWallet",
    "version": "0.0.1",
    "permissions": ["scripting", "background", "storage", "activeTab", "sidePanel", "alarms"],
    "host_permissions": ["*://*/*"],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": ["*://*/*"],
            "js": ["content.js"]
        }
    ],
    "action": {},
    "side_panel": {
        "default_path": "index.html"
    },
    "icons": {
        "16": "icons/icon16.png",
        "19": "icons/icon19.png",
        "32": "icons/icon32.png",
        "38": "icons/icon38.png",
        "48": "icons/icon48.png",
        "128": "icons/icon128.png"
    }
}
