Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Was ist Caption Generator?
Caption Generator ist eine Chrome-Erweiterung, die von SalmanMKC - Salman Chishti entwickelt wurde, und ihr Hauptmerkmal ist "Generates a caption for all images based on their alt text, appearing above the image.".
Erweiterungsscreenshots
Caption Generator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Caption Generator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Generates a caption for all images based on their alt text, appearing above the image. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aijkpgmbgjpjjjejgcehmhfilookleon |
| Offizielle URL | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
| Beschreibung | Generates a caption for all images based on their alt text, appearing above the image. |
| Dateigröße | 34.11 KB |
| Installationsanzahl | 258 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2022-12-28 |
| Veröffentlichungsdatum | 2022-12-28 |
| Entwickler | SalmanMKC - Salman Chishti |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |