Developer Accessibility Tool

Developer Tool - Enhance web page accessibility

Developer Accessibility Toolคืออะไร?

Developer Accessibility Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย canbeinclusive และคุณลักษณะหลักของมันคือ "Developer Tool - Enhance web page accessibility"

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

screenshot

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

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

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

                        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
}