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…
Vad är Copy Guard?
Copy Guard är en Chrome-tillägg utvecklad av Ruud Schroën, och dess huvudfunktion är "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".
Tilläggsskärmbilder
Ladda ner Copy Guard-förlängningens CRX-fil
Ladda ner Copy Guard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
Officiell webbadress | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
Beskrivning | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
Filstorlek | 97.56 KB |
Antal Installationer | 58 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2024-02-24 |
Publiceringsdatum | 2020-12-13 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Ruud Schroën |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/roedesh/copyguard |
Hjälpsida URL | https://github.com/roedesh/copyguard/issues |
Stödda Språk | 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 } |