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…

Hvad er Copy Guard?

Copy Guard er en Chrome-udvidelse udviklet af Ruud Schroën, og dens hovedfunktion er "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".

Udvidelsesskærmbilleder

screenshot

Download Copy Guard-udvidelses-CRX-fil

Download Copy Guard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
Officiel URL https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij
Beskrivelse Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
Filstørrelse 97.56 KB
Antal Installationer 58
Nuværende Version 2.0.0
Senest Opdateret 2024-02-24
Udgivelsesdato 2020-12-13
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Ruud Schroën
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/roedesh/copyguard
Hjælpeside-URL https://github.com/roedesh/copyguard/issues
Understøttede Sprog 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
}