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 là gì?

Copy Paste Hack Blocker là một tiện ích mở rộng Chrome được phát triển bởi Y Schwartz, và tính năng chính của nó là "Protects the user from having the selected text of a web page changed when they are trying to copy text".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy Paste Hack Blocker

Tải xuống các tệp mở rộng Copy Paste Hack Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Paste Hack Blocker Copy Paste Hack Blocker
ID fkfnmcncicigjajpfdgpkjohbondnkld
URL Chính Thức https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld
Mô tả Protects the user from having the selected text of a web page changed when they are trying to copy text
Kích Thước Tệp 23.34 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2022-01-13
Ngày Phát Hành 2022-01-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Y Schwartz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/judaschwartz/copy-paste-hack-blocker
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}