Tota11y Toolkit Chrome Extension

Use Tota11y everywhere to maximize accessibility.

Tota11y Toolkit Chrome Extension란 무엇입니까?

Tota11y Toolkit Chrome Extension은(는) Mike Zrimsek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Tota11y everywhere to maximize accessibility."입니다.

Tota11y Toolkit Chrome Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tota11y is a great toolkit for doing some easy fixes to make your webpages more accessible.

Features
* Injects Tota11y tookit into page
* Allows for toggling toolbar on/off by clicking extension logo (default to off)
* Adds a "Show All" plugin to activate all accessibility plugins at once

Usage
1. Toggle the toolbar on by clicking on the extension icon
2. Click on the toolbar that popped up on the bottom left of your screen
3. Select the different options to see if there are some changes you could make to improve accessibility

Source for this extension can be found at: https://github.com/mzrimsek/tota11y-extension                    

확장 프로그램 기본 정보

이름 Tota11y Toolkit Chrome Extension Tota11y Toolkit Chrome Extension
ID plgldjckfjonhhaflbghkdmbcmffccpn
공식 URL https://chrome.google.com/webstore/detail/tota11y-toolkit-chrome-ex/plgldjckfjonhhaflbghkdmbcmffccpn
설명 Use Tota11y everywhere to maximize accessibility.
파일 크기 86.26 KB
설치 횟수 347
현재 버전 0.9.5
최근 업데이트 2017-02-24
출시 날짜 2017-02-24
평점 4.00/5 총 1 개의 평점
개발자 Mike Zrimsek
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tota11y Toolkit Chrome Extension",
    "short_name": "Tota11y Chrome Extension",
    "version": "0.9.5",
    "manifest_version": 2,
    "description": "Use Tota11y everywhere to maximize accessibility.",
    "icons": {
        "128": "src\/img\/logo.png"
    },
    "browser_action": {
        "default_icon": "src\/img\/logo.png",
        "default_title": "tota11y"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/css\/content.css"
            ],
            "js": [
                "src\/js\/tota11y.min.js",
                "src\/js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}