Speedability

Speed read readability pages similarly to Spritz.

Speedabilityคืออะไร?

Speedability เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrisdavies และคุณลักษณะหลักของมันคือ "Speed read readability pages similarly to Spritz."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Speedability

ดาวน์โหลดไฟล์ส่วนขยาย 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
}