Copy Paste Hack Blocker

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

Co to jest Copy Paste Hack Blocker?

Copy Paste Hack Blocker to rozszerzenie Chrome opracowane przez Y Schwartz, a jego główną funkcją jest „Protects the user from having the selected text of a web page changed when they are trying to copy text”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Copy Paste Hack Blocker

Pobierz pliki rozszerzeń Copy Paste Hack Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
Oficjalny URL https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Opis Protects the user from having the selected text of a web page changed when they are trying to copy text
Rozmiar pliku 23.34 KB
Liczba instalacji 125
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2022-01-13
Data Publikacji 2022-01-07
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Y Schwartz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/judaschwartz/copy-paste-hack-blocker
Obsługiwane Języki 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"
            ]
        }
    ]
}