Copy Paste Hack Blocker

Protects the user from having the selected text of a web page changed when they are trying to copy text

Copy Paste Hack Blocker란 무엇입니까?

Copy Paste Hack Blocker은(는) Y Schwartz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protects the user from having the selected text of a web page changed when they are trying to copy text"입니다.

확장 프로그램 스크린샷

screenshot

Copy Paste Hack Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a Chrome plugin that protects the browser from the copy paste hack that is shown here https://marco97pa.github.io/copy-paste-hack-js/

By default a confirmation dialogue will be displayed if the copied text is different than the selected text the user can change the setting to have the copied text be auto corrected in the clipboard without confirmation.                    

확장 프로그램 기본 정보

이름 Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
공식 URL https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
설명 Protects the user from having the selected text of a web page changed when they are trying to copy text
파일 크기 23.34 KB
설치 횟수 125
현재 버전 1.0.3
최근 업데이트 2022-01-13
출시 날짜 2022-01-07
평점 5.00/5 총 3 개의 평점
개발자 Y Schwartz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/judaschwartz/copy-paste-hack-blocker
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Paste Hack Blocker",
    "description": "Protects the user from having the selected text of a web page changed when they are trying to copy text",
    "options_page": "popup.html",
    "version": "1.0.3",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ]
}