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ファイルをダウンロード

Copy Paste Hack Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}