Caption Generator

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

Caption Generator là gì?

Caption Generator là một tiện ích mở rộng Chrome được phát triển bởi SalmanMKC - Salman Chishti, và tính năng chính của nó là "Generates a caption for all images based on their alt text, appearing above the image.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Caption Generator

Tải xuống các tệp mở rộng Caption Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Caption Generator Caption Generator
ID aijkpgmbgjpjjjejgcehmhfilookleon
URL Chính Thức https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon
Mô tả Generates a caption for all images based on their alt text, appearing above the image.
Kích Thước Tệp 34.11 KB
Số Lần Cài Đặt 258
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-12-28
Ngày Phát Hành 2022-12-28
Nhà Phát Triển SalmanMKC - Salman Chishti
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}