Toggle JavaScript
Enable or disable JavaScript without the hassle.
What is Toggle JavaScript?
Toggle JavaScript is a Chrome extension developed by dsmith, and its main feature is "Enable or disable JavaScript without the hassle.".
Extension Screenshots
Download Toggle JavaScript Extension CRX File
Download Toggle JavaScript 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
Toggle JavaScript provides a simple, easy-to-access browser button to enable or disable JavaScript globally. It was built with web developers in mind, but is equally useful for anyone who wants to quickly enable/disable JavaScript without having to dig deep into Chrome's Settings panel. Features: - global JavaScript master switch - reloads when toggling to ensure accurate rendering (optional since v1.3) More Info: There are similar extensions that enable or disable JavaScript per-domain, but I find this over-complicated so I decided to build a JavaScript "master switch". Also, similar extensions can cause pages to be rendered inaccurately after disabling JavaScript. This extension uses an auto-reload technique to ensure that pages are always rendered correctly after switching JavaScript on or off. I hope you enjoy using it - if you do, please tell your friends about it and help me out by giving it a positive review. Thanks!
Extension Basic Information
Name | Toggle JavaScript |
ID | cidlcjdalomndpeagkjpnefhljffbnlo |
Official URL | https://chromewebstore.google.com/detail/toggle-javascript/cidlcjdalomndpeagkjpnefhljffbnlo |
Description | Enable or disable JavaScript without the hassle. |
File Size | 24.5 KB |
Installation Count | 171,111 |
Current Version | 2.0 |
Last Updated | 2022-05-18 |
Publish Date | 2018-03-07 |
Rating | 4.31/5 Total 171 Ratings |
Developer | dsmith |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Toggle JavaScript", "version": "2.0", "manifest_version": 3, "description": "Enable or disable JavaScript without the hassle.", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "action": { "default_icon": "icons\/38-on.png" }, "background": { "service_worker": "js\/service-worker-async.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+J", "mac": "Alt+Shift+J" } } }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "contentSettings", "storage" ] } |