Copy Image URL

When pressing the copy shortcut key on the image, directly copy the image address, no need to right click

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

Copy Image URL - это расширение Chrome, разработанное huangxiaoyu1018, и его основная функция - "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".

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

screenshot
screenshot

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

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

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

                        Copy image address without right-clicking, just hover the image and hit Ctrl+C / Cmd+C.                    

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

Название Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
Официальный URL https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
Описание When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
Размер файла 3.4 KB
Количество установок 79
Текущая Версия 1.0
Последнее Обновление 2023-07-25
Дата публикации 2023-07-24
Рейтинг 1.00/5 Всего 1 оценок
Разработчик huangxiaoyu1018
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Image URL",
    "version": "1.0",
    "description": "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click",
    "permissions": [
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}