Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
什麼是Caption Generator?
Caption Generator是由SalmanMKC - Salman Chishti開發的Chrome擴展程式,該擴展的主要功能是“Generates a caption for all images based on their alt text, appearing above the image.”。
擴展截圖
下載Caption Generator擴展crx文件
下載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 |
官方網址 | 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" ] } |