{
    "manifest_version": 3,
    "name": "SoundCloud Activity Bridge",
    "version": "0.3.2",
    "description": "Sends the currently playing SoundCloud track to the local BetterDiscord SoundCloudActivity plugin.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https://soundcloud.com/*",
        "http://127.0.0.1:32145/*"
    ],
    "action": {
        "default_title": "SoundCloud Activity",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https://soundcloud.com/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}
