Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Wat is Caption Generator?
Caption Generator is een Chrome-extensie ontwikkeld door SalmanMKC - Salman Chishti, en de belangrijkste functie is "Generates a caption for all images based on their alt text, appearing above the image.".
Extensie Screenshots
Download het CRX-bestand van de extensie Caption Generator
Download Caption Generator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Generates a caption for all images based on their alt text, appearing above the image.
Basisinformatie over de Extensie
Naam | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
Officiële URL | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
Beschrijving | Generates a caption for all images based on their alt text, appearing above the image. |
Bestandsgrootte | 34.11 KB |
Aantal Installaties | 258 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2022-12-28 |
Publicatiedatum | 2022-12-28 |
Ontwikkelaar | SalmanMKC - Salman Chishti |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |