Spotify adblocker

Listen to your favorite music without any ads with spotify adblocker

¿Qué es Spotify adblocker?

Spotify adblocker es una extensión de Chrome desarrollada por Prime Extensions, y su función principal es "Listen to your favorite music without any ads with spotify adblocker".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Spotify adblocker

Descarga archivos de extensión Spotify adblocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Enhance your Spotify experience with Spotify AdBlocker ! This Chrome extension effortlessly blocks annoying audio, as well as pesky pop-ups, ensuring uninterrupted music streaming. No more interruptions—just pure, ad-free music bliss. Upgrade your Spotify journey today                    

Información Básica de la Extensión

Nombre Spotify adblocker Spotify adblocker
ID jjkmjkmaaaplnncabkhoeonloebnmjgd
URL Oficial https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd
Descripción Listen to your favorite music without any ads with spotify adblocker
Tamaño del Archivo 123 KB
Cantidad de Instalaciones 31
Versión Actual 1.0.0
Última Actualización 2023-09-28
Fecha de Publicación 2023-09-28
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Prime Extensions
Correo electrónico [email protected]
Sitio Web de la Extensión https://www.spotifyadblocker.co/
URL de la Página de Ayuda https://www.spotifyadblocker.co/support
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify adblocker",
    "description": "Listen to your favorite music without any ads with spotify adblocker",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "spotify16x16.png",
        "48": "spotify48x48.png",
        "128": "spotify128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "spotify adblocker",
        "default_icon": "spotify16x16.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}