Web Stripper

Turn off CSS and JS on the fly!

Wat is Web Stripper?

Web Stripper is een Chrome-extensie ontwikkeld door Andrey Shevyakov, en de belangrijkste functie is "Turn off CSS and JS on the fly!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Web Stripper

Download Web Stripper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Officiële URL https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Beschrijving Turn off CSS and JS on the fly!
Bestandsgrootte 137 KB
Aantal Installaties 33
Huidige Versie 1.0
Laatst Bijgewerkt 2020-05-28
Publicatiedatum 2020-05-27
Ontwikkelaar Andrey Shevyakov
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina http://zitri.tech/privacy/chrome
Ondersteunde Talen 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\/*"
    ]
}