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…

Qu'est-ce que Copy Guard ?

Copy Guard est une extension Chrome développée par Ruud Schroën, et sa fonction principale est "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy Guard

Téléchargez les fichiers d'extension Copy Guard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Copy Guard Copy Guard
ID kobgknfkonpcnijbmjpepfonpnkeefij
URL Officiel 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…
Taille du Fichier 97.56 KB
Nombre d'Installations 58
Version Actuelle 2.0.0
Dernière Mise à Jour 2024-02-24
Date de Publication 2020-12-13
Évaluation 5.00/5 Total 3 Évaluations
Développeur Ruud Schroën
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/roedesh/copyguard
URL de la Page d'Aide https://github.com/roedesh/copyguard/issues
Langues Prises en Charge 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
}