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…

What is Copy Guard?

Copy Guard is a Chrome extension developed by Ruud Schroën, and its main feature is "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".

Extension Screenshots

screenshot

Download Copy Guard Extension CRX File

Download Copy Guard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
Official URL https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij
Description Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
File Size 97.56 KB
Installation Count 58
Current Version 2.0.0
Last Updated 2024-02-24
Publish Date 2020-12-13
Rating 5.00/5 Total 3 Ratings
Developer Ruud Schroën
Email [email protected]
Payment Type free
Extension Website https://github.com/roedesh/copyguard
Help Page URL https://github.com/roedesh/copyguard/issues
Supported Languages 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
}