Ad Blocker Notice Removal

Remove the ad blocker notice on popular sites

O que é Ad Blocker Notice Removal?

Ad Blocker Notice Removal é uma extensão do Chrome desenvolvida por https://www.xeweb.net, e sua principal característica é "Remove the ad blocker notice on popular sites".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Ad Blocker Notice Removal

Baixe arquivos de extensão Ad Blocker Notice Removal 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

                        Some websites force it's users to disable their ad blocker in order to view the page. This can expose users to targeted ads which are a serious threat to your privacy.

This extension simply removes the ad blocker notice on over 500 websites so that you may browse freely. It's free and open source!

If you see a notice that is not removed by this extension feel free to report it by right-clicking the extension icon and choosing "Report issue with website".

Please consider sponsoring this project at https://github.com/sponsors/fire015                    

Informações Básicas da Extensão

Nome Ad Blocker Notice Removal Ad Blocker Notice Removal
ID bnohpbaeckhhfnfijdnapgmbldkigchl
URL Oficial https://chromewebstore.google.com/detail/ad-blocker-notice-removal/bnohpbaeckhhfnfijdnapgmbldkigchl
Descrição Remove the ad blocker notice on popular sites
Tamanho do Arquivo 33.04 KB
Contagem de Instalações 2,866
Versão Atual 2.0.6
Última Atualização 2024-03-01
Data de Publicação 2020-08-18
Classificação 3.55/5 Total de 11 Avaliações
Desenvolvedor https://www.xeweb.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fire015/adblocker-notice-removal
URL da Página de Ajuda https://github.com/fire015/adblocker-notice-removal/issues/new
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ad Blocker Notice Removal",
    "version": "2.0.6",
    "author": "Jason M",
    "description": "Remove the ad blocker notice on popular sites",
    "manifest_version": 3,
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "arrive.min.js",
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_title": "Ad Blocker Notice Removal",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "alarms",
        "tabs"
    ]
}