Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Cos'è Caption Generator?
Caption Generator è un'estensione di Chrome sviluppata da SalmanMKC - Salman Chishti, e la sua funzione principale è "Generates a caption for all images based on their alt text, appearing above the image.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Caption Generator
Scarica i file di estensione Caption Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Generates a caption for all images based on their alt text, appearing above the image.
Informazioni di Base sull'Estensione
Nome | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
URL Ufficiale | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
Descrizione | Generates a caption for all images based on their alt text, appearing above the image. |
Dimensione del File | 34.11 KB |
Conteggio Installazioni | 258 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2022-12-28 |
Data di Pubblicazione | 2022-12-28 |
Sviluppatore | SalmanMKC - Salman Chishti |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |