Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
O que é Simple JavaScript Toggle?
Simple JavaScript Toggle é uma extensão do Chrome desenvolvida por https://squishythoughts.com, e sua principal característica é "Enable or disable JavaScript on a site-by-site basis.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Simple JavaScript Toggle
Baixe arquivos de extensão Simple JavaScript Toggle 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
Simple JavaScript Toggle adds a button which allows you to control if JavaScript should be allowed to run on the current site or not. Chrome has built-in support for allowing you to configure which sites should be allowed to run JavaScript. You do this on the Chrome settings page, and it works really well for permanently blocking or allowing a site. If you find that you regularly need to change whether to allow or block JavaScript on a site, using the settings page gets impractical. That's where this extension comes in. By clicking on a button in the toolbar, JavaScript is either enabled or disabled for the current site whereupon the page is reloaded.
Informações Básicas da Extensão
Nome | Simple JavaScript Toggle |
ID | mhidlbegmoiddmebedbiijmpckambgfj |
URL Oficial | https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj |
Descrição | Enable or disable JavaScript on a site-by-site basis. |
Tamanho do Arquivo | 19.15 KB |
Contagem de Instalações | 897 |
Versão Atual | 1.0.0 |
Última Atualização | 2014-07-20 |
Data de Publicação | 2014-07-20 |
Classificação | 3.60/5 Total de 10 Avaliações |
Desenvolvedor | https://squishythoughts.com |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple JavaScript Toggle", "description": "Enable or disable JavaScript on a site-by-site basis.", "version": "1.0.0", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contentSettings" ], "browser_action": { "default_icon": "icon-off.png", "default_title": "Toggle JavaScript" }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |