Speedability

Speed read readability pages similarly to Spritz.

Speedabilityとは何ですか?

Speedabilityはchrisdaviesによって開発されたChromeの拡張機能で、その主な機能は「Speed read readability pages similarly to Spritz.」です。

拡張機能のスクリーンショット

screenshot

Speedability拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Add a speed-reading helper to Readability with Speedability. This works similarly to Spritz, by displaying the words of the webpage in rapid succession.

To use:
1. View a page with Readability (https://www.readability.com/)
2. Click the Speedability icon in the address bar
3. Click play to speed-read the page

Additional controls:
- Use the left and right arrow keys to quickly scan forward and backward.
- Double-click the left and right buttons to skip to the end or beginning                    

拡張機能の基本情報

名前 Speedability Speedability
ID gkmeiagfplehlimagckabmgpkkmkbgjh
公式URL https://chrome.google.com/webstore/detail/speedability/gkmeiagfplehlimagckabmgpkkmkbgjh
説明 Speed read readability pages similarly to Spritz.
ファイルサイズ 24.96 KB
インストール数 85
現在のバージョン 1.13
最終更新日 2014-03-13
公開日 2014-03-13
評価 3.67/5 合計 3 レビュー
開発者 chrisdavies
支払い方法 free
拡張機能のウェブサイト https://github.com/chrisdavies/speedability
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speedability",
    "description": "Speed read readability pages similarly to Spritz.",
    "version": "1.13",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.readability.com\/*",
        "*:\/\/readability.com\/*",
        "background",
        "storage"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Quick Read",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.readability.com\/*",
                "*:\/\/readability.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": true,
    "manifest_version": 2
}