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…

Wat is Copy Guard?

Copy Guard is een Chrome-extensie ontwikkeld door Ruud Schroën, en de belangrijkste functie is "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Copy Guard

Download Copy Guard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
Officiële URL https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij
Beschrijving Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
Bestandsgrootte 97.56 KB
Aantal Installaties 58
Huidige Versie 2.0.0
Laatst Bijgewerkt 2024-02-24
Publicatiedatum 2020-12-13
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Ruud Schroën
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/roedesh/copyguard
Help Pagina-URL https://github.com/roedesh/copyguard/issues
Ondersteunde Talen 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
}