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…
Co to jest Copy Guard?
Copy Guard to rozszerzenie Chrome opracowane przez Ruud Schroën, a jego główną funkcją jest „Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Copy Guard
Pobierz pliki rozszerzeń Copy Guard w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
Oficjalny URL | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
Opis | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
Rozmiar pliku | 97.56 KB |
Liczba instalacji | 58 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2024-02-24 |
Data Publikacji | 2020-12-13 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Ruud Schroën |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/roedesh/copyguard |
Adres URL Strony Pomocy | https://github.com/roedesh/copyguard/issues |
Obsługiwane Języki | 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 } |