disable-HTML
Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
What is disable-HTML?
disable-HTML is a Chrome extension developed by Daniel Lucks, and its main feature is "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.".
Extension Screenshots
Download disable-HTML Extension CRX File
Download disable-HTML extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | disable-HTML |
ID | lfhjgihpknekohffabeddfkmoiklonhm |
Official URL | https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm |
Description | Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups. |
File Size | 21.64 KB |
Installation Count | 28,523 |
Current Version | 0.1.0 |
Last Updated | 2013-12-30 |
Publish Date | 2013-12-30 |
Rating | 4.45/5 Total 47 Ratings |
Developer | Daniel Lucks |
Payment Type | free |
Supported Languages | 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" } } |