disable-HTML

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

什麼是disable-HTML?

disable-HTML是由Daniel Lucks開發的Chrome擴展程式,該擴展的主要功能是“Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.”。

擴展截圖

screenshot
screenshot
screenshot

下載disable-HTML擴展crx文件

下載disable-HTML擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 disable-HTML disable-HTML
ID lfhjgihpknekohffabeddfkmoiklonhm
官方網址 https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm
簡介 Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
檔案大小 21.64 KB
安裝次數 28,523
目前版本 0.1.0
更新時間 2013-12-30
上架時間 2013-12-30
評分 4.45/5 共 47 次評分
開發者 Daniel Lucks
付費類型 free
支援的語言 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"
    }
}