Copy Paste Hack Blocker

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

Hvad er Copy Paste Hack Blocker?

Copy Paste Hack Blocker er en Chrome-udvidelse udviklet af Y Schwartz, og dens hovedfunktion er "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Udvidelsesskærmbilleder

screenshot

Download Copy Paste Hack Blocker-udvidelses-CRX-fil

Download Copy Paste Hack Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
Officiel URL https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Beskrivelse Protects the user from having the selected text of a web page changed when they are trying to copy text
Filstørrelse 23.34 KB
Antal Installationer 125
Nuværende Version 1.0.3
Senest Opdateret 2022-01-13
Udgivelsesdato 2022-01-07
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Y Schwartz
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/judaschwartz/copy-paste-hack-blocker
Understøttede Sprog 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"
            ]
        }
    ]
}