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