disable-HTML
Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
O que é disable-HTML?
disable-HTML é uma extensão do Chrome desenvolvida por Daniel Lucks, e sua principal característica é "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão disable-HTML
Baixe arquivos de extensão disable-HTML no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | disable-HTML |
ID | lfhjgihpknekohffabeddfkmoiklonhm |
URL Oficial | https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm |
Descrição | Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups. |
Tamanho do Arquivo | 21.64 KB |
Contagem de Instalações | 28,523 |
Versão Atual | 0.1.0 |
Última Atualização | 2013-12-30 |
Data de Publicação | 2013-12-30 |
Classificação | 4.45/5 Total de 47 Avaliações |
Desenvolvedor | Daniel Lucks |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |