Web Stripper

Turn off CSS and JS on the fly!

Что такое Web Stripper?

Web Stripper - это расширение Chrome, разработанное Andrey Shevyakov, и его основная функция - "Turn off CSS and JS on the fly!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Web Stripper

Скачайте файлы расширений Web Stripper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        "Web Stripper" is a neat tiny Chrome extension that provides the web-development assistance functionality.

Current features:
* Disable CSS
* Disable JS

Feel free to leave the feedback suggesting the features to implement in the future versions.                    

Основная информация о расширении

Название Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Официальный URL https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Описание Turn off CSS and JS on the fly!
Размер файла 137 KB
Количество установок 33
Текущая Версия 1.0
Последнее Обновление 2020-05-28
Дата публикации 2020-05-27
Разработчик Andrey Shevyakov
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://zitri.tech/privacy/chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Stripper",
    "short_name": "Web Stripper",
    "description": "Turn off CSS and JS on the fly!",
    "version": "1.0",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "CSS And JS Stripper"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": false,
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "script\/loader.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "src\/*",
        "img\/*",
        "font\/*"
    ]
}