Copy Paste Hack Blocker

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

Was ist Copy Paste Hack Blocker?

Copy Paste Hack Blocker ist eine Chrome-Erweiterung, die von Y Schwartz entwickelt wurde, und ihr Hauptmerkmal ist "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Erweiterungsscreenshots

screenshot

Copy Paste Hack Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Paste Hack Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
Offizielle URL https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Beschreibung Protects the user from having the selected text of a web page changed when they are trying to copy text
Dateigröße 23.34 KB
Installationsanzahl 125
Aktuelle Version 1.0.3
Letztes Update 2022-01-13
Veröffentlichungsdatum 2022-01-07
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Y Schwartz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/judaschwartz/copy-paste-hack-blocker
Unterstützte Sprachen 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"
            ]
        }
    ]
}