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
官方網址 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"
    ]
}