Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Hvad er Caption Generator?
Caption Generator er en Chrome-udvidelse udviklet af SalmanMKC - Salman Chishti, og dens hovedfunktion er "Generates a caption for all images based on their alt text, appearing above the image.".
Udvidelsesskærmbilleder
Download Caption Generator-udvidelses-CRX-fil
Download Caption Generator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Generates a caption for all images based on their alt text, appearing above the image. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | aijkpgmbgjpjjjejgcehmhfilookleon |
| Officiel URL | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
| Beskrivelse | Generates a caption for all images based on their alt text, appearing above the image. |
| Filstørrelse | 34.11 KB |
| Antal Installationer | 258 |
| Nuværende Version | 1.0.1 |
| Senest Opdateret | 2022-12-28 |
| Udgivelsesdato | 2022-12-28 |
| Udvikler | SalmanMKC - Salman Chishti |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |