Developer Accessibility Tool

Developer Tool - Enhance web page accessibility

Developer Accessibility Tool란 무엇입니까?

Developer Accessibility Tool은(는) canbeinclusive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Developer Tool - Enhance web page accessibility"입니다.

확장 프로그램 스크린샷

screenshot

Developer Accessibility Tool 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Developer Accessibility Tool uses CAN repository to fix accessibility issues on web pages.CAN repository is a pool of solutions for various web accessibility issues.Developers can use this add on and chrome developer console to interact with CAN repository and visiting web pages to find accessibility problems on the web page as well as fix it.

The contents of this software were developed under a grant from the National Institute on Disability, Independent Living, and Rehabilitation Research (NIDILRR grant number 90DP0061-01-00).  NIDILRR is a Center within the Administration for Community Living (ACL), Department of Health and Human Services (HHS). The contents of this (insert type of publication; e.g., book, report, film) do not necessarily represent the policy of NIDILRR, ACL, HHS, and you should not assume endorsement by the Federal Government.                    

확장 프로그램 기본 정보

이름 Developer Accessibility Tool Developer Accessibility Tool
ID fcngonjbamdeknokaghjgdgkbgcdahdl
공식 URL https://chrome.google.com/webstore/detail/developer-accessibility-t/fcngonjbamdeknokaghjgdgkbgcdahdl
설명 Developer Tool - Enhance web page accessibility
파일 크기 317 KB
설치 횟수 293
현재 버전 1.4
최근 업데이트 2015-06-29
출시 날짜 2015-06-29
평점 3.00/5 총 2 개의 평점
개발자 canbeinclusive
결제 유형 free
확장 프로그램 웹 사이트 http://can.ischool.syr.edu
도움말 페이지 URL https://can.ischool.syr.edu/trac/CAN_Project/wiki
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Developer Accessibility Tool ",
    "description": "Developer Tool - Enhance web page accessibility ",
    "version": "1.4",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/can.ischool.syr.edu\/",
        "http:\/\/localhost:3000\/",
        "http:\/\/*\/",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "frame-src  'self'; default-src 'self'",
    "browser_action": {
        "default_title": "Developer Tool - Enhance web page accessibility",
        "default_icon": "accessibility.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.1.js",
                "content_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+D",
                "mac": "MacCtrl+Shift+D"
            },
            "description": "Activate the extension"
        }
    },
    "manifest_version": 2
}