Copy Link Name

Copies the name of a link (anchor text) to the clipboard.

Что такое Copy Link Name?

Copy Link Name - это расширение Chrome, разработанное https://www.adelsaoud.com, и его основная функция - "Copies the name of a link (anchor text) to the clipboard.".

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

screenshot

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

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

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

                        Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser.

Makes it very easy to copy the visible text of a link (also called link name or anchor text).
Just right click on a link & choose "Copy Link Name".

Note: Like all Content Script extensions, this extension is automatically disabled in the Chrome Extensions site. So please test it on a normal web page.                    

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

Название Copy Link Name Copy Link Name
ID mafjnaphoepgijmgfeemillelgkeigid
Официальный URL https://chromewebstore.google.com/detail/copy-link-name/mafjnaphoepgijmgfeemillelgkeigid
Описание Copies the name of a link (anchor text) to the clipboard.
Размер файла 10.84 KB
Количество установок 7,162
Текущая Версия 1.0.8
Последнее Обновление 2023-09-14
Дата публикации 2016-10-14
Рейтинг 3.33/5 Всего 109 оценок
Разработчик https://www.adelsaoud.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.adelsaoud.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Name",
    "version": "1.0.8",
    "description": "Copies the name of a link (anchor text) to the clipboard.",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "copy_link_name.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}