Break the wall

This extension allows you to read any website without distractions or ads of any type

O que é Break the wall?

Break the wall é uma extensão do Chrome desenvolvida por https://erasmo.dev, e sua principal característica é "This extension allows you to read any website without distractions or ads of any type".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Break the wall

Baixe arquivos de extensão Break the wall 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

                        This extension remove PAYWALLS from ANY website.

If the bad PAYWALL of any page is breaking your concentration, just BREAK THE WALL!

-- Version 2.0.0 -- 

- Outline service was shutdown, replaced by https://12ft.io/

-- Version 1.0.1 -- 

- Removed useless logic.
- Performance Optimizations.                    

Informações Básicas da Extensão

Nome Break the wall Break the wall
ID nibfdabgnekfamcpaghohhhgbbjoflha
URL Oficial https://chromewebstore.google.com/detail/break-the-wall/nibfdabgnekfamcpaghohhhgbbjoflha
Descrição This extension allows you to read any website without distractions or ads of any type
Tamanho do Arquivo 45.81 KB
Contagem de Instalações 1,270
Versão Atual 2.0.0
Última Atualização 2022-08-16
Data de Publicação 2020-09-04
Classificação 3.29/5 Total de 7 Avaliações
Desenvolvedor https://erasmo.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://erasmo.dev
URL da Página de Ajuda https://erasmo.dev
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Break the wall",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "This extension allows you to read any website without distractions or ads of any type",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}