Spotify Ad Blocker

Spotify Ad Blocker

Vad är Spotify Ad Blocker?

Spotify Ad Blocker är en Chrome-tillägg utvecklad av Spotify Adblocker, och dess huvudfunktion är "Spotify Ad Blocker".

Tilläggsskärmbilder

screenshot

Ladda ner Spotify Ad Blocker-förlängningens CRX-fil

Ladda ner Spotify Ad Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Install spotify adblocker chrome extension and block all annoying ads. Enjoy ads free music experience.                    

Grundläggande Information om Tillägg

Namn Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
Officiell webbadress https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
Beskrivning Spotify Ad Blocker
Filstorlek 366 KB
Antal Installationer 25
Aktuell Version 1.0
Senast Uppdaterad 2023-06-04
Publiceringsdatum 2023-06-04
Utvecklare Spotify Adblocker
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spotify Ad Blocker",
    "version": "1.0",
    "description": "Spotify Ad Blocker",
    "icons": {
        "16": "SpotiIcon16.png",
        "32": "SpotiIcon32.png",
        "64": "SpotiIcon64.png",
        "128": "SpotiIcon128.png"
    },
    "action": {
        "default_title": "Spotify Ad Blocker",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_1.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest",
        "tabs",
        "storage",
        "notifications",
        "gcm"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scriptSpotify.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}