Copy URL+

Copy a short URL, title, and selected text in any format you want.

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

Copy URL+ - это расширение Chrome, разработанное Naoto Yokoyama, и его основная функция - "Copy a short URL, title, and selected text in any format you want.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Key features

- Keyboard shortcuts

- Flexible context menus

- URL shortening

- Notifications

Icons and promotional images are designed by Honeshabri.                    

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

Название Copy URL+ Copy URL+
ID capojgaalppngkaagaobmigigcgnidmn
Официальный URL https://chromewebstore.google.com/detail/copy-url+/capojgaalppngkaagaobmigigcgnidmn
Описание Copy a short URL, title, and selected text in any format you want.
Размер файла 35.59 KB
Количество установок 3,796
Текущая Версия 1.1.1
Последнее Обновление 2020-08-06
Дата публикации 2020-08-06
Рейтинг 3.93/5 Всего 45 оценок
Разработчик Naoto Yokoyama
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URL+",
    "version": "1.1.1",
    "description": "Copy a short URL, title, and selected text in any format you want.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/keyboard.js",
                "scripts\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "clipboardWrite",
        "notifications",
        "contextMenus",
        "https:\/\/www.googleapis.com\/url\/shortener",
        "https:\/\/accounts.google.com\/o\/oauth2\/auth",
        "https:\/\/accounts.google.com\/o\/oauth2\/token",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}