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" ] } ] } |