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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ruud Schroën และคุณลักษณะหลักของมันคือ "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Guard

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}