Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Vad är Caption Generator?
Caption Generator är en Chrome-tillägg utvecklad av SalmanMKC - Salman Chishti, och dess huvudfunktion är "Generates a caption for all images based on their alt text, appearing above the image.".
Tilläggsskärmbilder
Ladda ner Caption Generator-förlängningens CRX-fil
Ladda ner Caption Generator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Generates a caption for all images based on their alt text, appearing above the image.
Grundläggande Information om Tillägg
Namn | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
Officiell webbadress | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
Beskrivning | Generates a caption for all images based on their alt text, appearing above the image. |
Filstorlek | 34.11 KB |
Antal Installationer | 258 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2022-12-28 |
Publiceringsdatum | 2022-12-28 |
Utvecklare | SalmanMKC - Salman Chishti |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |