Caption Generator

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

Co je Caption Generator?

Caption Generator je rozšíření Chrome vyvinuté SalmanMKC - Salman Chishti, a jeho hlavní funkcí je „Generates a caption for all images based on their alt text, appearing above the image.“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Caption Generator

Stáhněte si soubory rozšíření Caption Generator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
Oficiální URL https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Popis Generates a caption for all images based on their alt text, appearing above the image.
Velikost souboru 34.11 KB
Počet instalací 258
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-12-28
Datum Vydání 2022-12-28
Vývojář SalmanMKC - Salman Chishti
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}