Speedability

Speed read readability pages similarly to Spritz.

Speedability là gì?

Speedability là một tiện ích mở rộng Chrome được phát triển bởi chrisdavies, và tính năng chính của nó là "Speed read readability pages similarly to Spritz.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Speedability

Tải xuống các tệp mở rộng Speedability dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Speedability Speedability
ID gkmeiagfplehlimagckabmgpkkmkbgjh
URL Chính Thức https://chrome.google.com/webstore/detail/speedability/gkmeiagfplehlimagckabmgpkkmkbgjh
Mô tả Speed read readability pages similarly to Spritz.
Kích Thước Tệp 24.96 KB
Số Lần Cài Đặt 85
Phiên Bản Hiện Tại 1.13
Cập Nhật Lần Cuối 2014-03-13
Ngày Phát Hành 2014-03-13
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển chrisdavies
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chrisdavies/speedability
Ngôn Ngữ Được Hỗ Trợ 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
}