Copy Paste Hack Blocker
Protects the user from having the selected text of a web page changed when they are trying to copy text
Apa itu Copy Paste Hack Blocker?
Copy Paste Hack Blocker adalah ekstensi Chrome yang dikembangkan oleh Y Schwartz, dan fitur utamanya adalah "Protects the user from having the selected text of a web page changed when they are trying to copy text".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Copy Paste Hack Blocker
Unduh file ekstensi Copy Paste Hack Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Copy Paste Hack Blocker |
ID | fkfnmcncicigjajpfdgpkjohbondnkld |
URL Resmi | https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld |
Deskripsi | Protects the user from having the selected text of a web page changed when they are trying to copy text |
Ukuran File | 23.34 KB |
Jumlah Instalasi | 125 |
Versi Saat Ini | 1.0.3 |
Terakhir Diperbarui | 2022-01-13 |
Tanggal Publikasi | 2022-01-07 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Y Schwartz |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/judaschwartz/copy-paste-hack-blocker |
Bahasa yang Didukung | 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" ] } ] } |