disable-HTML

Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.

Cos'è disable-HTML?

disable-HTML è un'estensione di Chrome sviluppata da Daniel Lucks, e la sua funzione principale è "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione disable-HTML

Scarica i file di estensione disable-HTML 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

                        This extensions provides a control panel to disable and enable browser settings like CSS, Javascript, Images, Cookies and Popups. Just click the icon and the control panel will show up. You will see simple on/off switches to turn on and turn off the settings.

So you can easily check how your website works without Javascript or without any images loaded. You also can check your websites behavior, if a user has blocked your cookies or popups. You want to see your website without any CSS applied to it? No problem, just disable CSS in the control panel.                    

Informazioni di Base sull'Estensione

Nome disable-HTML disable-HTML
ID lfhjgihpknekohffabeddfkmoiklonhm
URL Ufficiale https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm
Descrizione Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
Dimensione del File 21.64 KB
Conteggio Installazioni 28,523
Versione Corrente 0.1.0
Ultimo Aggiornamento 2013-12-30
Data di Pubblicazione 2013-12-30
Valutazione 4.45/5 Totale 47 Valutazioni
Sviluppatore Daniel Lucks
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "disable-HTML",
    "description": "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.",
    "version": "0.1.0",
    "permissions": [
        "tabs",
        "contentSettings",
        "storage",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "images\/icon-24-browser.png",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}