Caption Generator

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

Caption Generator क्या है?

Caption Generator SalmanMKC - Salman Chishti द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates a caption for all images based on their alt text, appearing above the image."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Caption Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
आधिकारिक URL https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
विवरण Generates a caption for all images based on their alt text, appearing above the image.
फ़ाइल का आकार 34.11 KB
स्थापना संख्या 258
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-12-28
प्रकाशन तिथि 2022-12-28
डेवलपर SalmanMKC - Salman Chishti
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}