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 |
| Eメール | [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
} | |