Clipboard Checker for Chrome

Keep your clipboard safe from malicious javascript insertions.

Clipboard Checker for Chrome क्या है?

Clipboard Checker for Chrome https://studiobrightside.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep your clipboard safe from malicious javascript insertions."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Clipboard Checker for 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\/*"
    ]
}