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'est-ce que Copy Paste Hack Blocker ?

Copy Paste Hack Blocker est une extension Chrome développée par Y Schwartz, et sa fonction principale est "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy Paste Hack Blocker

Téléchargez les fichiers d'extension Copy Paste Hack Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
URL Officiel https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Description Protects the user from having the selected text of a web page changed when they are trying to copy text
Taille du Fichier 23.34 KB
Nombre d'Installations 125
Version Actuelle 1.0.3
Dernière Mise à Jour 2022-01-13
Date de Publication 2022-01-07
Évaluation 5.00/5 Total 3 Évaluations
Développeur Y Schwartz
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/judaschwartz/copy-paste-hack-blocker
Langues Prises en Charge 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"
            ]
        }
    ]
}