Copy Image URL

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

O que é Copy Image URL?

Copy Image URL é uma extensão do Chrome desenvolvida por huangxiaoyu1018, e sua principal característica é "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy Image URL

Baixe arquivos de extensão Copy Image URL no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
URL Oficial https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
Descrição When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
Tamanho do Arquivo 3.4 KB
Contagem de Instalações 79
Versão Atual 1.0
Última Atualização 2023-07-25
Data de Publicação 2023-07-24
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor huangxiaoyu1018
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}