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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}