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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}