Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
Caption Generatorคืออะไร?
Caption Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SalmanMKC - Salman Chishti และคุณลักษณะหลักของมันคือ "Generates a caption for all images based on their alt text, appearing above the image."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Caption Generator
ดาวน์โหลดไฟล์ส่วนขยาย Caption Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Generates a caption for all images based on their alt text, appearing above the image.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
คำอธิบาย | Generates a caption for all images based on their alt text, appearing above the image. |
ขนาดไฟล์ | 34.11 KB |
จำนวนการติดตั้ง | 258 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2022-12-28 |
วันที่เผยแพร่ | 2022-12-28 |
ผู้พัฒนา | SalmanMKC - Salman Chishti |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |