Caption Generator

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

Τι είναι το Caption Generator;

Το Caption Generator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SalmanMKC - Salman Chishti, και η κύρια λειτουργία του είναι "Generates a caption for all images based on their alt text, appearing above the image.".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Caption Generator

Λήψη αρχείων επέκτασης Caption Generator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}