Clipboard Checker for Chrome

Keep your clipboard safe from malicious javascript insertions.

ما هو Clipboard Checker for Chrome؟

Clipboard Checker for Chrome هو إضافة Chrome تم تطويرها بواسطة https://studiobrightside.io، والميزة الرئيسية لها هي "Keep your clipboard safe from malicious javascript insertions.".

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

screenshot

تحميل ملف CRX للإضافة Clipboard Checker for Chrome

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

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

                        Clipboard Checker for Chrome is a set it and forget it Google Chrome extension. 

Keep your clipboard safe from malicious javascript insertions.

It will scan and check any text you copy in your browser to determine if malicious content has been injected into your clipboard. Did the website add contents you didn’t know about? The extension will notify you instantly.

This extension checks if webpages tinker with your clipboard. Is the contents of your clipboard actually what you expect it to be? When an inconsistency between your clipboard, and the text you've selected, is found, you'll receive a notification. 

Simple as that.

---

🔧 Latest bugfixes (v1.8.0)

•  Copying multiple snippets resulted in multiple popups overlaying eachother. Now, only one popup is shown.
•  When copying from a rich text editor field (Google drive, TinyMCE, code formatted editors, etc.) false positives occurred.

💻 Open-source

This extension is open-source. Check the Github for the code or to contribute: https://github.com/StudioBrightside/clipboardchecker                    

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

الاسم Clipboard Checker for Chrome Clipboard Checker for Chrome
ID hnbgpklbpfklicackgnbbmifjchmppdb
عنوان URL الرسمي https://chromewebstore.google.com/detail/clipboard-checker-for-chr/hnbgpklbpfklicackgnbbmifjchmppdb
الوصف Keep your clipboard safe from malicious javascript insertions.
حجم الملف 63.36 KB
عدد التثبيتات 283
النسخة الحالية 0.1.8
آخر تحديث 2021-01-30
تاريخ النشر 2021-01-19
تقييم 3.40/5 مجموع تقييمات 5
المطور https://studiobrightside.io
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://clipboardchecker.studiobrightside.io
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Checker for Chrome",
    "version": "0.1.8",
    "description": "Keep your clipboard safe from malicious javascript insertions.",
    "permissions": [
        "clipboardRead"
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "lib\/notify.js",
                "content.js"
            ],
            "css": [
                "lib\/notify.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}