Alt Text Copy

Copy Image Alt Text By Right Clicking

O que é Alt Text Copy?

Alt Text Copy é uma extensão do Chrome desenvolvida por hskolbeck, e sua principal característica é "Copy Image Alt Text By Right Clicking".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Alt Text Copy

Baixe arquivos de extensão Alt Text Copy 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

                        Adds an option to the right-click menu for images to allow easy copying of alt text, if present. After installing, pages will need to be refreshed before the extension will work.                    

Informações Básicas da Extensão

Nome Alt Text Copy Alt Text Copy
ID diklkehamgifnoikknopgieldonffjfk
URL Oficial https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk
Descrição Copy Image Alt Text By Right Clicking
Tamanho do Arquivo 22.98 KB
Contagem de Instalações 601
Versão Atual 1.1
Última Atualização 2022-12-31
Data de Publicação 2022-05-11
Classificação 3.33/5 Total de 6 Avaliações
Desenvolvedor hskolbeck
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://hannah.industries
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.1",
    "manifest_version": 3,
    "default_locale": "en_US",
    "background": {
        "service_worker": "menu.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/getClickTarget.js"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/AltTextCopy16.png",
            "32": "images\/AltTextCopy32.png",
            "48": "images\/AltTextCopy48.png",
            "128": "images\/AltTextCopy128.png"
        }
    },
    "icons": {
        "16": "images\/AltTextCopy16.png",
        "32": "images\/AltTextCopy32.png",
        "48": "images\/AltTextCopy48.png",
        "128": "images\/AltTextCopy128.png"
    }
}