Break the wall

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

Τι είναι το Break the wall;

Το Break the wall είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://erasmo.dev, και η κύρια λειτουργία του είναι "This extension allows you to read any website without distractions or ads of any type".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Break the wall

Λήψη αρχείων επέκτασης Break the wall σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Break the wall Break the wall
ID nibfdabgnekfamcpaghohhhgbbjoflha
Επίσημο URL https://chromewebstore.google.com/detail/break-the-wall/nibfdabgnekfamcpaghohhhgbbjoflha
Περιγραφή This extension allows you to read any website without distractions or ads of any type
Μέγεθος Αρχείου 45.81 KB
Αριθμός Εγκαταστάσεων 1,270
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2022-08-16
Ημερομηνία Δημοσίευσης 2020-09-04
Αξιολόγηση 3.29/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://erasmo.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://erasmo.dev
Διεύθυνση URL της Σελίδας Βοήθειας https://erasmo.dev
Υποστηριζόμενες Γλώσσες 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"
    }
}