Simple JavaScript Toggle
Enable or disable JavaScript on a site-by-site basis.
Simple JavaScript Toggleとは何ですか?
Simple JavaScript Toggleはhttps://squishythoughts.comによって開発されたChromeの拡張機能で、その主な機能は「Enable or disable JavaScript on a site-by-site basis.」です。
拡張機能のスクリーンショット
Simple JavaScript Toggle拡張機能のCRXファイルをダウンロード
Simple JavaScript Toggle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Simple JavaScript Toggle |
ID | mhidlbegmoiddmebedbiijmpckambgfj |
公式URL | https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj |
説明 | Enable or disable JavaScript on a site-by-site basis. |
ファイルサイズ | 19.15 KB |
インストール数 | 897 |
現在のバージョン | 1.0.0 |
最終更新日 | 2014-07-20 |
公開日 | 2014-07-20 |
評価 | 3.60/5 合計 10 レビュー |
開発者 | https://squishythoughts.com |
支払い方法 | free |
対応言語 | 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" } } |