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" } } |