Copy Plain Text

You may copy the selected text to the clipboard without formatting by right-clicking on it.

Что такое Copy Plain Text?

Copy Plain Text - это расширение Chrome, разработанное David Klayer, и его основная функция - "You may copy the selected text to the clipboard without formatting by right-clicking on it.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Copy Plain Text

Скачайте файлы расширений Copy Plain Text в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Copy Plain Text is a lightweight plugin that allows you to copy any text without formatting to the clipboard by adding a right-click context menu option.

Simply navigate to a website and choose a phrase, then right-click and pick - Copy as plain text from the context menu. The selected text will be copied to the clipboard unaltered.

You may also paste links to websites on a Mac using the address bar (ctrl + v) or right-click and select Paste - from the context menu.                    

Основная информация о расширении

Название Copy Plain Text Copy Plain Text
ID ilbkhfhoagglkammfimendfopgmpochg
Официальный URL https://chromewebstore.google.com/detail/copy-plain-text/ilbkhfhoagglkammfimendfopgmpochg
Описание You may copy the selected text to the clipboard without formatting by right-clicking on it.
Размер файла 18.13 KB
Количество установок 432
Текущая Версия 0.1
Последнее Обновление 2022-05-29
Дата публикации 2022-05-29
Рейтинг 4.93/5 Всего 41 оценок
Разработчик David Klayer
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://worldaddons.com/copy-plain-text/
URL страницы помощи https://worldaddons.com/contact/
URL страницы политики конфиденциальности https://worldaddons.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Copy Plain Text",
    "short_name": "copy-plain-text",
    "homepage_url": "https:\/\/worldaddons.com\/copy-plain-text\/",
    "description": "You may copy the selected text to the clipboard without formatting by right-clicking on it.",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "clipboardWrite"
    ],
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "resources\/icons\/16.png",
        "32": "resources\/icons\/32.png",
        "48": "resources\/icons\/48.png",
        "64": "resources\/icons\/64.png",
        "128": "resources\/icons\/128.png"
    }
}