Copy Paste Hack Blocker

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

O que é Copy Paste Hack Blocker?

Copy Paste Hack Blocker é uma extensão do Chrome desenvolvida por Y Schwartz, e sua principal característica é "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy Paste Hack Blocker

Baixe arquivos de extensão Copy Paste Hack Blocker 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

                        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.                    

Informações Básicas da Extensão

Nome Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
URL Oficial https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Descrição Protects the user from having the selected text of a web page changed when they are trying to copy text
Tamanho do Arquivo 23.34 KB
Contagem de Instalações 125
Versão Atual 1.0.3
Última Atualização 2022-01-13
Data de Publicação 2022-01-07
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Y Schwartz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/judaschwartz/copy-paste-hack-blocker
Idiomas Suportados 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"
            ]
        }
    ]
}