Spotify adblocker

Listen to your favorite music without any ads with spotify adblocker

O que é Spotify adblocker?

Spotify adblocker é uma extensão do Chrome desenvolvida por Prime Extensions, e sua principal característica é "Listen to your favorite music without any ads with spotify adblocker".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Spotify adblocker

Baixe arquivos de extensão Spotify adblocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Spotify adblocker Spotify adblocker
ID jjkmjkmaaaplnncabkhoeonloebnmjgd
URL Oficial https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd
Descrição Listen to your favorite music without any ads with spotify adblocker
Tamanho do Arquivo 123 KB
Contagem de Instalações 31
Versão Atual 1.0.0
Última Atualização 2023-09-28
Data de Publicação 2023-09-28
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Prime Extensions
Email [email protected]
Site da Extensão https://www.spotifyadblocker.co/
URL da Página de Ajuda https://www.spotifyadblocker.co/support
Idiomas Suportados 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\/*"
            ]
        }
    ]
}