Long Descriptions in Context Menu

Right-click on anything with a "longdesc" or "aria-describedat" attribute to access its long description.

Long Descriptions in Context Menuคืออะไร?

Long Descriptions in Context Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrome-a11y-extensions และคุณลักษณะหลักของมันคือ "Right-click on anything with a "longdesc" or "aria-describedat" attribute to access its long description."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Long Descriptions in Context Menu

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

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

                        The HTML standard allows images to have a link to an additional file with a long description with the "longdesc" attribute. In addition there's a proposed new ARIA attribute "aria-describedat" that's similar.

Normally these attributes are only exposed to users who have screen readers or other assistive technology installed that knows to look for these.

This extension puts an item in the context menu so you can right-click on any element on the page and open its long description. It also gives you the option of adding a colored border to images with a long description so you know when one is available.                    

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

ชื่อ Long Descriptions in Context Menu Long Descriptions in Context Menu
ID ohbmencljkleiedahijfkagnmmhbilgp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/long-descriptions-in-cont/ohbmencljkleiedahijfkagnmmhbilgp
คำอธิบาย Right-click on anything with a "longdesc" or "aria-describedat" attribute to access its long description.
ขนาดไฟล์ 133 KB
จำนวนการติดตั้ง 58,974
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2015-04-28
วันที่เผยแพร่ 2015-04-28
คะแนน 4.33/5 รวมทั้งหมด 1522 คะแนน
ผู้พัฒนา chrome-a11y-extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://policies.google.com/privacy?hl=en
ภาษาที่รองรับ id,ms,de,en,en-GB,fil,fr,sw,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_LONGDESC_APPNAME__",
    "version": "1.0.2",
    "description": "__MSG_LONGDESC_APPDESC__",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lastRightClick.js"
            ],
            "css": [
                "border.css"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        ""
    ],
    "manifest_version": 2,
    "default_locale": "en",
    "options_page": "options.html"
}