Alt Text Copy
Copy Image Alt Text By Right Clicking
Alt Text Copyคืออะไร?
Alt Text Copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hskolbeck และคุณลักษณะหลักของมันคือ "Copy Image Alt Text By Right Clicking"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Alt Text Copy
ดาวน์โหลดไฟล์ส่วนขยาย Alt Text Copy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds an option to the right-click menu for images to allow easy copying of alt text, if present. After installing, pages will need to be refreshed before the extension will work.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
คำอธิบาย | Copy Image Alt Text By Right Clicking |
ขนาดไฟล์ | 22.98 KB |
จำนวนการติดตั้ง | 601 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2022-12-31 |
วันที่เผยแพร่ | 2022-05-11 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | hskolbeck |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://hannah.industries |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1", "manifest_version": 3, "default_locale": "en_US", "background": { "service_worker": "menu.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/getClickTarget.js" ] } ], "permissions": [ "clipboardWrite", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_icon": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } }, "icons": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } } |