Adblock - best ad blocker

Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.

O que é Adblock - best ad blocker?

Adblock - best ad blocker é uma extensão do Chrome desenvolvida por Odd Extensions, e sua principal característica é "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Adblock - best ad blocker

Baixe arquivos de extensão Adblock - best ad blocker 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

                        Adblock ensures a seamless browsing experience by eliminating annoying popups and intrusive ads on popular platforms like YouTube, Spotify, and Twitch. Say goodbye to interruptions during videos and music streaming. Customize your ad-blocking settings, enjoy faster page loading times, and save bandwidth. Enhance your online journey with Adblock, supporting a more pleasant browsing environment without compromising content creators' revenue—whitelist non-intrusive ads when appropriate.                    

Informações Básicas da Extensão

Nome Adblock - best ad blocker Adblock - best ad blocker
ID hlneapehiglcfldmddiclojadjnfhclm
URL Oficial https://chromewebstore.google.com/detail/adblock-best-ad-blocker/hlneapehiglcfldmddiclojadjnfhclm
Descrição Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.
Tamanho do Arquivo 1.5 MB
Contagem de Instalações 48
Versão Atual 1.0.0
Última Atualização 2023-12-21
Data de Publicação 2023-12-21
Desenvolvedor Odd Extensions
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblock - best ad blocker",
    "description": "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "bestadblocker16.png",
        "48": "bestadblocker48.png",
        "128": "bestadblocker128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Adblock - best ad blocker",
        "default_icon": "bestadblocker16.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "Youtube.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        },
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}