Copy Paste Hack Blocker

Protects the user from having the selected text of a web page changed when they are trying to copy text

Cos'è Copy Paste Hack Blocker?

Copy Paste Hack Blocker è un'estensione di Chrome sviluppata da Y Schwartz, e la sua funzione principale è "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy Paste Hack Blocker

Scarica i file di estensione Copy Paste Hack Blocker 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

                        This is a Chrome plugin that protects the browser from the copy paste hack that is shown here https://marco97pa.github.io/copy-paste-hack-js/

By default a confirmation dialogue will be displayed if the copied text is different than the selected text the user can change the setting to have the copied text be auto corrected in the clipboard without confirmation.                    

Informazioni di Base sull'Estensione

Nome Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
URL Ufficiale https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Descrizione Protects the user from having the selected text of a web page changed when they are trying to copy text
Dimensione del File 23.34 KB
Conteggio Installazioni 125
Versione Corrente 1.0.3
Ultimo Aggiornamento 2022-01-13
Data di Pubblicazione 2022-01-07
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Y Schwartz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/judaschwartz/copy-paste-hack-blocker
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Paste Hack Blocker",
    "description": "Protects the user from having the selected text of a web page changed when they are trying to copy text",
    "options_page": "popup.html",
    "version": "1.0.3",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ]
}