Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Co to jest Caption Generator?
Caption Generator to rozszerzenie Chrome opracowane przez SalmanMKC - Salman Chishti, a jego główną funkcją jest „Generates a caption for all images based on their alt text, appearing above the image.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Caption Generator
Pobierz pliki rozszerzeń Caption Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Generates a caption for all images based on their alt text, appearing above the image.
Podstawowe informacje o rozszerzeniu
Nazwa | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
Oficjalny URL | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
Opis | Generates a caption for all images based on their alt text, appearing above the image. |
Rozmiar pliku | 34.11 KB |
Liczba instalacji | 258 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2022-12-28 |
Data Publikacji | 2022-12-28 |
Deweloper | SalmanMKC - Salman Chishti |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |