Web Stripper

Turn off CSS and JS on the fly!

Cos'è Web Stripper?

Web Stripper è un'estensione di Chrome sviluppata da Andrey Shevyakov, e la sua funzione principale è "Turn off CSS and JS on the fly!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Web Stripper

Scarica i file di estensione Web Stripper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Web Stripper Web Stripper
ID lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
URL Ufficiale https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp
Descrizione Turn off CSS and JS on the fly!
Dimensione del File 137 KB
Conteggio Installazioni 33
Versione Corrente 1.0
Ultimo Aggiornamento 2020-05-28
Data di Pubblicazione 2020-05-27
Sviluppatore Andrey Shevyakov
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://zitri.tech/privacy/chrome
Lingue Supportate 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\/*"
    ]
}