Copy Paste Hack Blocker
Protects the user from having the selected text of a web page changed when they are trying to copy text
Co je Copy Paste Hack Blocker?
Copy Paste Hack Blocker je rozšíření Chrome vyvinuté Y Schwartz, a jeho hlavní funkcí je „Protects the user from having the selected text of a web page changed when they are trying to copy text“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Copy Paste Hack Blocker
Stáhněte si soubory rozšíření Copy Paste Hack Blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Copy Paste Hack Blocker |
ID | fkfnmcncicigjajpfdgpkjohbondnkld |
Oficiální URL | https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld |
Popis | Protects the user from having the selected text of a web page changed when they are trying to copy text |
Velikost souboru | 23.34 KB |
Počet instalací | 125 |
Aktuální Verze | 1.0.3 |
Poslední Aktualizace | 2022-01-13 |
Datum Vydání | 2022-01-07 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Y Schwartz |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/judaschwartz/copy-paste-hack-blocker |
Podporované Jazyky | 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" ] } ] } |