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-a11y-extensions開發的Chrome擴展程式,該擴展的主要功能是“Right-click on anything with a "longdesc" or "aria-describedat" attribute to access its long description.”。

擴展截圖

screenshot

下載Long Descriptions in Context Menu擴展crx文件

下載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
官方網址 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"
}