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…
Was ist Copy Guard?
Copy Guard ist eine Chrome-Erweiterung, die von Ruud Schroën entwickelt wurde, und ihr Hauptmerkmal ist "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".
Erweiterungsscreenshots
Copy Guard-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Guard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
Offizielle URL | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
Beschreibung | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
Dateigröße | 97.56 KB |
Installationsanzahl | 58 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2024-02-24 |
Veröffentlichungsdatum | 2020-12-13 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Ruud Schroën |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/roedesh/copyguard |
Hilfeseite URL | https://github.com/roedesh/copyguard/issues |
Unterstützte Sprachen | 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 } |