Web Stripper
Turn off CSS and JS on the fly!
O que é Web Stripper?
Web Stripper é uma extensão do Chrome desenvolvida por Andrey Shevyakov, e sua principal característica é "Turn off CSS and JS on the fly!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Web Stripper
Baixe arquivos de extensão Web Stripper 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
"Web Stripper" is a neat tiny Chrome extension that provides the web-development assistance functionality. Current features: * Disable CSS * Disable JS Feel free to leave the feedback suggesting the features to implement in the future versions.
Informações Básicas da Extensão
Nome | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
URL Oficial | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Descrição | Turn off CSS and JS on the fly! |
Tamanho do Arquivo | 137 KB |
Contagem de Instalações | 33 |
Versão Atual | 1.0 |
Última Atualização | 2020-05-28 |
Data de Publicação | 2020-05-27 |
Desenvolvedor | Andrey Shevyakov |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | http://zitri.tech/privacy/chrome |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Stripper", "short_name": "Web Stripper", "description": "Turn off CSS and JS on the fly!", "version": "1.0", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_popup": "html\/popup.html", "default_title": "CSS And JS Stripper" }, "permissions": [ "activeTab", "storage" ], "background": { "persistent": false, "page": "html\/background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "script\/loader.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "src\/*", "img\/*", "font\/*" ] } |