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開發的Chrome擴展程式,該擴展的主要功能是“Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…”。

擴展截圖

screenshot

下載Copy Guard擴展crx文件

下載Copy Guard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}