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 là gì?
Copy Guard là một tiện ích mở rộng Chrome được phát triển bởi Ruud Schroën, và tính năng chính của nó là "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy Guard
Tải xuống các tệp mở rộng Copy Guard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
URL Chính Thức | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
Mô tả | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
Kích Thước Tệp | 97.56 KB |
Số Lần Cài Đặt | 58 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2024-02-24 |
Ngày Phát Hành | 2020-12-13 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Ruud Schroën |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/roedesh/copyguard |
URL Trang Trợ Giúp | https://github.com/roedesh/copyguard/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |