Copy URL text

A tool to decode URL when copying links from a web page.

Что такое Copy URL text?

Copy URL text - это расширение Chrome, разработанное dave.waters89, и его основная функция - "A tool to decode URL when copying links from a web page.".

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

screenshot

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

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

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

                        This extension will decode the link url copied from a webpage to the clipboard and update the clipboard with the decoded url.  Can be used to quickly get the pretty version of a URL link.                    

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

Название Copy URL text Copy URL text
ID ihdpldgbcefimodimfdjhbhnanpocgfj
Официальный URL https://chromewebstore.google.com/detail/copy-url-text/ihdpldgbcefimodimfdjhbhnanpocgfj
Описание A tool to decode URL when copying links from a web page.
Размер файла 3.5 KB
Количество установок 43
Текущая Версия 0.0.0.1
Последнее Обновление 2018-12-06
Дата публикации 2018-11-30
Разработчик dave.waters89
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URL text",
    "description": "A tool to decode URL when copying links from a web page.",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "oncopy.js"
            ]
        }
    ]
}