Copy Paste Hack Blocker

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

¿Qué es Copy Paste Hack Blocker?

Copy Paste Hack Blocker es una extensión de Chrome desarrollada por Y Schwartz, y su función principal es "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Copy Paste Hack Blocker

Descarga archivos de extensión Copy Paste Hack Blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
URL Oficial https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Descripción Protects the user from having the selected text of a web page changed when they are trying to copy text
Tamaño del Archivo 23.34 KB
Cantidad de Instalaciones 125
Versión Actual 1.0.3
Última Actualización 2022-01-13
Fecha de Publicación 2022-01-07
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Y Schwartz
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/judaschwartz/copy-paste-hack-blocker
Idiomas Soportados 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"
            ]
        }
    ]
}