Caption Generator

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

¿Qué es Caption Generator?

Caption Generator es una extensión de Chrome desarrollada por SalmanMKC - Salman Chishti, y su función principal es "Generates a caption for all images based on their alt text, appearing above the image.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Caption Generator

Descarga archivos de extensión Caption Generator 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

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

Información Básica de la Extensión

Nombre Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
URL Oficial https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Descripción Generates a caption for all images based on their alt text, appearing above the image.
Tamaño del Archivo 34.11 KB
Cantidad de Instalaciones 258
Versión Actual 1.0.1
Última Actualización 2022-12-28
Fecha de Publicación 2022-12-28
Desarrollador SalmanMKC - Salman Chishti
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}