Caption Generator

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

Caption Generatorとは何ですか?

Caption GeneratorはSalmanMKC - Salman Chishtiによって開発されたChromeの拡張機能で、その主な機能は「Generates a caption for all images based on their alt text, appearing above the image.」です。

拡張機能のスクリーンショット

Caption Generator拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}