Speedability

Speed read readability pages similarly to Spritz.

Speedability क्या है?

Speedability chrisdavies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Speed read readability pages similarly to Spritz."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Speedability एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}