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"
    }
}