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