Spotify Ad Blocker

Spotify Ad Blocker

Cos'è Spotify Ad Blocker?

Spotify Ad Blocker è un'estensione di Chrome sviluppata da Spotify Adblocker, e la sua funzione principale è "Spotify Ad Blocker".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Spotify Ad Blocker

Scarica i file di estensione Spotify Ad Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Spotify Ad Blocker Spotify Ad Blocker
ID loecehfebbfodlfkllgcacegfifldlnh
URL Ufficiale https://chrome.google.com/webstore/detail/spotify-ad-blocker/loecehfebbfodlfkllgcacegfifldlnh
Descrizione Spotify Ad Blocker
Dimensione del File 366 KB
Conteggio Installazioni 25
Versione Corrente 1.0
Ultimo Aggiornamento 2023-06-04
Data di Pubblicazione 2023-06-04
Sviluppatore Spotify Adblocker
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}