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…
O que é Copy Guard?
Copy Guard é uma extensão do Chrome desenvolvida por Ruud Schroën, e sua principal característica é "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy Guard
Baixe arquivos de extensão Copy Guard no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | kobgknfkonpcnijbmjpepfonpnkeefij |
URL Oficial | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
Descrição | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
Tamanho do Arquivo | 97.56 KB |
Contagem de Instalações | 58 |
Versão Atual | 2.0.0 |
Última Atualização | 2024-02-24 |
Data de Publicação | 2020-12-13 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Ruud Schroën |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/roedesh/copyguard |
URL da Página de Ajuda | https://github.com/roedesh/copyguard/issues |
Idiomas Suportados | 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 } |