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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Y Schwartz และคุณลักษณะหลักของมันคือ "Protects the user from having the selected text of a web page changed when they are trying to copy text"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Paste Hack Blocker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |