Toggle JavaScript
Enable or disable JavaScript without the hassle.
Toggle JavaScriptとは何ですか?
Toggle JavaScriptはdsmithによって開発されたChromeの拡張機能で、その主な機能は「Enable or disable JavaScript without the hassle.」です。
拡張機能のスクリーンショット
Toggle JavaScript拡張機能のCRXファイルをダウンロード
Toggle JavaScript拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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! 拡張機能の基本情報
| 名前 | |
| ID | cidlcjdalomndpeagkjpnefhljffbnlo |
| 公式URL | https://chromewebstore.google.com/detail/toggle-javascript/cidlcjdalomndpeagkjpnefhljffbnlo |
| 説明 | Enable or disable JavaScript without the hassle. |
| ファイルサイズ | 24.5 KB |
| インストール数 | 171,111 |
| 現在のバージョン | 2.0 |
| 最終更新日 | 2022-05-18 |
| 公開日 | 2018-03-07 |
| 評価 | 4.31/5 合計 171 レビュー |
| 開発者 | dsmith |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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"
]
} | |