Social visual alt text
Visually show alternative text of social media images
Social visual alt textคืออะไร?
Social visual alt text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nick DeNardis และคุณลักษณะหลักของมันคือ "Visually show alternative text of social media images"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Social visual alt text
ดาวน์โหลดไฟล์ส่วนขยาย Social visual alt text ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
View the alt text applied to images without the need to inspect each image or use a screen reader. It makes the alternate text on social media posts visible to sighted users on Twitter, Instagram, Facebook, and more. Human generated alt-text is visible on a blue background, AI-generated alt-text has a maroon background and images without alt text have a red line under the image. Options allow for customization of each color and which sites view the alt text.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Social visual alt text |
ID | bkpbmomfemcjdeekdffmbohifpndodmi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/social-visual-alt-text/bkpbmomfemcjdeekdffmbohifpndodmi |
คำอธิบาย | Visually show alternative text of social media images |
ขนาดไฟล์ | 19.52 KB |
จำนวนการติดตั้ง | 725 |
เวอร์ชันปัจจุบัน | 0.7.15 |
อัปเดตครั้งล่าสุด | 2023-08-07 |
วันที่เผยแพร่ | 2021-06-16 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Nick DeNardis |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nickdenardis/social-visual-alt-text |
URL หน้าช่วยเหลือ | https://github.com/nickdenardis/social-visual-alt-text/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Social visual alt text", "description": "Visually show alternative text of social media images", "version": "0.7.15", "manifest_version": 3, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "src\/common.js", "src\/mastodon.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "src\/twitter.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "src\/tweetdeck.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "src\/instagram.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "src\/linkedin.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "src\/facebook.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "icons": { "16": "\/images\/visual-alt-16.png", "32": "\/images\/visual-alt-32.png", "48": "\/images\/visual-alt-48.png", "128": "\/images\/visual-alt-128.png" }, "browser_specific_settings": { "gecko": { "id": "{d63bf015-2002-4ef8-96dc-b99bab518ec9}" } } } |