Caption Generator

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

Qu'est-ce que Caption Generator ?

Caption Generator est une extension Chrome développée par SalmanMKC - Salman Chishti, et sa fonction principale est "Generates a caption for all images based on their alt text, appearing above the image.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Caption Generator

Téléchargez les fichiers d'extension Caption Generator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
URL Officiel https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Description Generates a caption for all images based on their alt text, appearing above the image.
Taille du Fichier 34.11 KB
Nombre d'Installations 258
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-12-28
Date de Publication 2022-12-28
Développeur SalmanMKC - Salman Chishti
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}