Caption Generator

Generates a caption for all images based on their alt text, appearing above the image.

O que é Caption Generator?

Caption Generator é uma extensão do Chrome desenvolvida por SalmanMKC - Salman Chishti, e sua principal característica é "Generates a caption for all images based on their alt text, appearing above the image.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Caption Generator

Baixe arquivos de extensão Caption Generator 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

                        Generates a caption for all images based on their alt text, appearing above the image.                    

Informações Básicas da Extensão

Nome Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
URL Oficial https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Descrição Generates a caption for all images based on their alt text, appearing above the image.
Tamanho do Arquivo 34.11 KB
Contagem de Instalações 258
Versão Atual 1.0.1
Última Atualização 2022-12-28
Data de Publicação 2022-12-28
Desenvolvedor SalmanMKC - Salman Chishti
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Caption Generator",
    "description": "Generates a caption for all images based on their alt text, appearing above the image.",
    "version": "1.0.1",
    "icons": {
        "512": "icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self';  object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "background.js"
            ]
        }
    ],
    "action": {
        "default_title": "Click me",
        "default_icon": {
            "512": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ]
}