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
公式URL 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"
    }
}