Copy Image URL

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

¿Qué es Copy Image URL?

Copy Image URL es una extensión de Chrome desarrollada por huangxiaoyu1018, y su función principal es "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy Image URL

Descarga archivos de extensión Copy Image URL en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
URL Oficial https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
Descripción When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
Tamaño del Archivo 3.4 KB
Cantidad de Instalaciones 79
Versión Actual 1.0
Última Actualización 2023-07-25
Fecha de Publicación 2023-07-24
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador huangxiaoyu1018
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}