Accessibility View

Accessibility View converts an arbitrary website into its accessibility relevant form.

Accessibility Viewคืออะไร?

Accessibility View เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dword-design.de และคุณลักษณะหลักของมันคือ "Accessibility View converts an arbitrary website into its accessibility relevant form."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Accessibility View

ดาวน์โหลดไฟล์ส่วนขยาย Accessibility View ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever wanted to see a website's structure from the view of a screen reader but without actually having to start a screen reader? Accessible View converts an arbitrary website into its accessibility relevant form. Think of it like a representation from the view of a screen reader. That means that it reverts any frontend adjustments and only shows things like:

• HTML5 structural elements like hav, header, main, footer, aside or articles
• Forms and form inputs
• Links
• Lists
• role attributes
• Hides aria-hidden elements
• Hides display: none elements

WIP:
• Show aria-labels
• Hint on missing image alt attributes
• Hint on title attributes since they are not well supported by screen readers                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Accessibility View Accessibility View
ID ekpmnemcmjcimpnmofmiaeoggjkjohjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/accessibility-view/ekpmnemcmjcimpnmofmiaeoggjkjohjg
คำอธิบาย Accessibility View converts an arbitrary website into its accessibility relevant form.
ขนาดไฟล์ 140 KB
จำนวนการติดตั้ง 717
เวอร์ชันปัจจุบัน 1.3.13
อัปเดตครั้งล่าสุด 2020-10-01
วันที่เผยแพร่ 2020-06-09
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://dword-design.de
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accessibility View",
    "version": "1.3.13",
    "description": "Accessibility View converts an arbitrary website into its accessibility relevant form.",
    "manifest_version": 2,
    "icons": {
        "128": "assets\/icon.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}