Caption Generator

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

Apa itu Caption Generator?

Caption Generator adalah ekstensi Chrome yang dikembangkan oleh SalmanMKC - Salman Chishti, dan fitur utamanya adalah "Generates a caption for all images based on their alt text, appearing above the image.".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Caption Generator

Unduh file ekstensi Caption Generator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
URL Resmi https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Deskripsi Generates a caption for all images based on their alt text, appearing above the image.
Ukuran File 34.11 KB
Jumlah Instalasi 258
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2022-12-28
Tanggal Publikasi 2022-12-28
Pengembang SalmanMKC - Salman Chishti
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}