Stop JavaScript
Stop JavaScript execution in current tab.
什么是Stop JavaScript?
Stop JavaScript是由SAGAN开发的Chrome扩展程序,该扩展的主要功能是“Stop JavaScript execution in current tab.”。
扩展截图
下载Stop JavaScript扩展crx文件
下载Stop JavaScript扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
** Yet Another "allow copy" extension ** This extension stops JavaScript execution of current page by preventing any further DOM event being dispatched to registered handlers. It is mainly designed to remove any limitations that prevent the copy / context menu functions from working. Usage: click the "red cross" button in Chrome toolbar.
扩展基本信息
名称 | Stop JavaScript |
ID | djecijdiikggekgohjffnccifchfdmim |
官方URL | https://chromewebstore.google.com/detail/stop-javascript/djecijdiikggekgohjffnccifchfdmim |
简介 | Stop JavaScript execution in current tab. |
文件大小 | 14.03 KB |
安装次数 | 436 |
当前版本 | 1.0.5 |
更新时间 | 2023-12-31 |
上架时间 | 2018-07-11 |
评分 | 4.60/5 共10次评分 |
开发者 | SAGAN |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sagan/chrome-extension-stop-javascript |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stop JavaScript", "description": "Stop JavaScript execution in current tab.", "version": "1.0.5", "author": "Jacques De SAGAN", "manifest_version": 3, "permissions": [ "scripting", "activeTab" ], "icons": { "16": "icons\/cross_16x16.png", "48": "icons\/cross_48x48.png", "64": "icons\/cross_64x64.png", "128": "icons\/cross_128x128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Stop JavaScript" } } |