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ファイルをダウンロード

Tota11y Toolkit Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}