Copy Guard
Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
什么是Copy Guard?
Copy Guard是由Ruud Schroën开发的Chrome扩展程序,该扩展的主要功能是“Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…”。
扩展截图
下载Copy Guard扩展crx文件
下载Copy Guard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if there are hidden elements in your text selection. If this is the case, a native notification will be triggered.
扩展基本信息
名称 | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
官方URL | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
简介 | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
文件大小 | 97.56 KB |
安装次数 | 58 |
当前版本 | 2.0.0 |
更新时间 | 2024-02-24 |
上架时间 | 2020-12-13 |
评分 | 5.00/5 共3次评分 |
开发者 | Ruud Schroën |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/roedesh/copyguard |
帮助页面URL | https://github.com/roedesh/copyguard/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "permissions": [ "notifications", "storage" ], "background": { "service_worker": "src\/background\/index.js" }, "options_ui": { "page": "src\/options\/index.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "src\/contentScript\/index.js" ] } ], "minimum_chrome_version": "88", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "96": "assets\/icon96.png", "128": "assets\/icon128.png" }, "name": "Copy Guard", "version": "2.0.0", "manifest_version": 3 } |