Copy Element Text

Copies the text inside elements

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

Copy Element Text - это расширение Chrome, разработанное mistweaver.co, и его основная функция - "Copies the text inside elements".

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

screenshot
screenshot

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

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

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

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

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

Название Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
Официальный URL https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Описание Copies the text inside elements
Размер файла 41.63 KB
Количество установок 564
Текущая Версия 1.0.0
Последнее Обновление 2022-10-19
Дата публикации 2022-10-03
Рейтинг 3.60/5 Всего 5 оценок
Разработчик mistweaver.co
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}