Copyables

Makes the text/label of focused links copyable. Also via contextmenu.

Что такое Copyables?

Copyables - это расширение Chrome, разработанное Rudie Dirkx, и его основная функция - "Makes the text/label of focused links copyable. Also via contextmenu.".

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

screenshot
screenshot

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

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

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

                        Makes the text/label of focused links copyable by using the normal copy keyboard command (CTRL + V for me).

Adds a contextmenu option to copy an element's text, for instance a link's label or a table cell's content.

Adds a contextmenu option to find background images.                    

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

Название Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
Официальный URL https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
Описание Makes the text/label of focused links copyable. Also via contextmenu.
Размер файла 8.87 KB
Количество установок 40
Текущая Версия 1.9
Последнее Обновление 2022-09-25
Дата публикации 2017-10-16
Разработчик Rudie Dirkx
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/rudiedirkx/copyables-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copyables",
    "version": "1.9",
    "manifest_version": 3,
    "description": "Makes the text\/label of focused links copyable. Also via contextmenu.",
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "copyables.sw.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "copyables.content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}