Copy Guard

Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…

Copy Guard क्या है?

Copy Guard Ruud Schroën द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…"।

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

screenshot

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

crx प्रारूप में Copy Guard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if there are hidden elements in your text selection. If this is the case, a native notification will be triggered.                    

एक्सटेंशन की मूल जानकारी

नाम Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
आधिकारिक URL https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij
विवरण Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
फ़ाइल का आकार 97.56 KB
स्थापना संख्या 58
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2024-02-24
प्रकाशन तिथि 2020-12-13
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Ruud Schroën
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/roedesh/copyguard
सहायता पृष्ठ URL https://github.com/roedesh/copyguard/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "notifications",
        "storage"
    ],
    "background": {
        "service_worker": "src\/background\/index.js"
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "src\/contentScript\/index.js"
            ]
        }
    ],
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "96": "assets\/icon96.png",
        "128": "assets\/icon128.png"
    },
    "name": "Copy Guard",
    "version": "2.0.0",
    "manifest_version": 3
}