reddit-adblock

An extenstion that blocks ads on reddit!

O que é reddit-adblock?

reddit-adblock é uma extensão do Chrome desenvolvida por Venkat Naidu, e sua principal característica é "An extenstion that blocks ads on reddit!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão reddit-adblock

Baixe arquivos de extensão reddit-adblock 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

                        Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all.                    

Informações Básicas da Extensão

Nome reddit-adblock reddit-adblock
ID mhgkomjopimfbhhiigdkielolbniipdp
URL Oficial https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp
Descrição An extenstion that blocks ads on reddit!
Tamanho do Arquivo 1.04 MB
Contagem de Instalações 47
Versão Atual 1.0
Última Atualização 2022-05-24
Data de Publicação 2022-05-23
Desenvolvedor Venkat Naidu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "reddit-adblock",
    "description": "An extenstion that blocks ads on reddit!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}