Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
Wat is Simple JavaScript Toggle?
Simple JavaScript Toggle is een Chrome-extensie ontwikkeld door https://squishythoughts.com, en de belangrijkste functie is "Enable or disable JavaScript on a site-by-site basis.".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple JavaScript Toggle
Download Simple JavaScript Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Simple JavaScript Toggle |
ID | mhidlbegmoiddmebedbiijmpckambgfj |
Officiële URL | https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj |
Beschrijving | Enable or disable JavaScript on a site-by-site basis. |
Bestandsgrootte | 19.15 KB |
Aantal Installaties | 897 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2014-07-20 |
Publicatiedatum | 2014-07-20 |
Beoordeling | 3.60/5 Totaal 10 Beoordelingen |
Ontwikkelaar | https://squishythoughts.com |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |