Web Stripper

Turn off CSS and JS on the fly!

Was ist Web Stripper?

Web Stripper ist eine Chrome-Erweiterung, die von Andrey Shevyakov entwickelt wurde, und ihr Hauptmerkmal ist "Turn off CSS and JS on the fly!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Web Stripper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Stripper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Offizielle URL https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Beschreibung Turn off CSS and JS on the fly!
Dateigröße 137 KB
Installationsanzahl 33
Aktuelle Version 1.0
Letztes Update 2020-05-28
Veröffentlichungsdatum 2020-05-27
Entwickler Andrey Shevyakov
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://zitri.tech/privacy/chrome
Unterstützte Sprachen 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\/*"
    ]
}