Web Stripper

Turn off CSS and JS on the fly!

What is Web Stripper?

Web Stripper is a Chrome extension developed by Andrey Shevyakov, and its main feature is "Turn off CSS and JS on the fly!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Web Stripper Extension CRX File

Download Web Stripper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Official URL https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Description Turn off CSS and JS on the fly!
File Size 137 KB
Installation Count 33
Current Version 1.0
Last Updated 2020-05-28
Publish Date 2020-05-27
Developer Andrey Shevyakov
Email [email protected]
Payment Type free
Privacy Policy Page URL http://zitri.tech/privacy/chrome
Supported Languages 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\/*"
    ]
}