Copy Paste Hack Blocker

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

ما هو Copy Paste Hack Blocker؟

Copy Paste Hack Blocker هو إضافة Chrome تم تطويرها بواسطة Y Schwartz، والميزة الرئيسية لها هي "Protects the user from having the selected text of a web page changed when they are trying to copy text".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Copy Paste Hack Blocker

قم بتنزيل ملفات الامتداد Copy Paste Hack Blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
عنوان URL الرسمي https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
الوصف Protects the user from having the selected text of a web page changed when they are trying to copy text
حجم الملف 23.34 KB
عدد التثبيتات 125
النسخة الحالية 1.0.3
آخر تحديث 2022-01-13
تاريخ النشر 2022-01-07
تقييم 5.00/5 مجموع تقييمات 3
المطور Y Schwartz
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/judaschwartz/copy-paste-hack-blocker
اللغات المدعومة 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"
            ]
        }
    ]
}