Break the wall

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

Hvad er Break the wall?

Break the wall er en Chrome-udvidelse udviklet af https://erasmo.dev, og dens hovedfunktion er "This extension allows you to read any website without distractions or ads of any type".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Break the wall-udvidelses-CRX-fil

Download Break the wall-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Break the wall Break the wall
ID nibfdabgnekfamcpaghohhhgbbjoflha
Officiel URL https://chromewebstore.google.com/detail/break-the-wall/nibfdabgnekfamcpaghohhhgbbjoflha
Beskrivelse This extension allows you to read any website without distractions or ads of any type
Filstørrelse 45.81 KB
Antal Installationer 1,270
Nuværende Version 2.0.0
Senest Opdateret 2022-08-16
Udgivelsesdato 2020-09-04
Bedømmelse 3.29/5 Samlet 7 Bedømmelser
Udvikler https://erasmo.dev
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://erasmo.dev
Hjælpeside-URL https://erasmo.dev
Understøttede Sprog 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"
    }
}