Websites Accessibility
accessibility tool for every website
Websites Accessibilityคืออะไร?
Websites Accessibility เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RanBuch และคุณลักษณะหลักของมันคือ "accessibility tool for every website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Websites Accessibility
ดาวน์โหลดไฟล์ส่วนขยาย Websites Accessibility ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add accessibility menu to every website! Features: * increase text size * decrease text size * increase text spacing * decrease text spacing * invert colors * gray hues * underline links * hotkeys * big cursor * reading guide * text to speech * speech to text For developers who what's to add this to their site: npm: https://www.npmjs.com/package/accessibility github: https://github.com/ranbuch/accessibility
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Websites Accessibility |
ID | aefndakodjcaapnmofhkmdbkabghakgn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/websites-accessibility/aefndakodjcaapnmofhkmdbkabghakgn |
คำอธิบาย | accessibility tool for every website |
ขนาดไฟล์ | 24.44 KB |
จำนวนการติดตั้ง | 312 |
เวอร์ชันปัจจุบัน | 3.0.96 |
อัปเดตครั้งล่าสุด | 2022-07-23 |
วันที่เผยแพร่ | 2020-04-25 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | RanBuch |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Websites Accessibility", "short_name": "accessibility", "version": "3.0.96", "description": "accessibility tool for every website", "manifest_version": 2, "background": { "page": "background.html" }, "icons": { "16": "logo_accessibility_16.png", "48": "logo_accessibility_48.png", "128": "logo_accessibility_128.png" }, "browser_action": { "default_icon": { "19": "logo_accessibility_19.png", "38": "logo_accessibility_38.png" }, "default_title": "website accessibility tool", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "accessibility.user.js" ], "run_at": "document_start" } ] } |