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”。
擴展截圖
下載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 |
ID | fkfnmcncicigjajpfdgpkjohbondnkld |
官方網址 | 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" ] } ] } |