Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
What is Caption Generator?
Caption Generator is a Chrome extension developed by SalmanMKC - Salman Chishti, and its main feature is "Generates a caption for all images based on their alt text, appearing above the image.".
Extension Screenshots
Download Caption Generator Extension CRX File
Download Caption Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Generates a caption for all images based on their alt text, appearing above the image.
Extension Basic Information
Name | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
Official URL | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
Description | Generates a caption for all images based on their alt text, appearing above the image. |
File Size | 34.11 KB |
Installation Count | 258 |
Current Version | 1.0.1 |
Last Updated | 2022-12-28 |
Publish Date | 2022-12-28 |
Developer | SalmanMKC - Salman Chishti |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |