Copy Link Text

Copies the text inside links

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

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

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

screenshot
screenshot

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

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

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

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

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

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

Название Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
Официальный URL https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Описание Copies the text inside links
Размер файла 565 KB
Количество установок 30,654
Текущая Версия 3.0.1
Последнее Обновление 2023-11-20
Дата публикации 2020-09-25
Рейтинг 3.23/5 Всего 78 оценок
Разработчик vestakuphal285
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://sites.google.com/view/pass-generator-2023/home
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}