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…

Cos'è Copy Guard?

Copy Guard è un'estensione di Chrome sviluppata da Ruud Schroën, e la sua funzione principale è "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy Guard

Scarica i file di estensione Copy Guard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
URL Ufficiale https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij
Descrizione Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
Dimensione del File 97.56 KB
Conteggio Installazioni 58
Versione Corrente 2.0.0
Ultimo Aggiornamento 2024-02-24
Data di Pubblicazione 2020-12-13
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Ruud Schroën
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/roedesh/copyguard
URL della Pagina di Aiuto https://github.com/roedesh/copyguard/issues
Lingue Supportate 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
}