YouDescribe extension for Youtube™
Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.
YouDescribe extension for Youtube™คืออะไร?
YouDescribe extension for Youtube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kostiantyn Plakhotia และคุณลักษณะหลักของมันคือ "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouDescribe extension for Youtube™
ดาวน์โหลดไฟล์ส่วนขยาย YouDescribe extension for Youtube™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Accessibility helper extension for YouTube which adds link to related YouDescribe.org page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gkfdmicoabhfiikenoajdelcibhakkfc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youdescribe-extension-for/gkfdmicoabhfiikenoajdelcibhakkfc |
คำอธิบาย | Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available. |
ขนาดไฟล์ | 87.18 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 0.0.4 |
อัปเดตครั้งล่าสุด | 2020-01-30 |
วันที่เผยแพร่ | 2020-01-27 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Kostiantyn Plakhotia |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouDescribe extension for Youtube\u2122", "description": "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.", "version": "0.0.4", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/api.youdescribe.org\/*" ], "background": { "page": "background.html", "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "vue.js", "content_script.js" ], "css": [ "content_style.css" ], "run_at": "document_end" } ], "icons": { "16": "img\/icons8-audio-description-filled-50.png", "48": "img\/icons8-audio-description-filled-50.png", "128": "img\/icons8-audio-description-filled-50.png" }, "web_accessible_resources": [ "img\/icons8-audio-description-50.png", "img\/icons8-audio-description-filled-50.png", "template.html" ], "offline_enabled": false, "manifest_version": 2 } |