Speed Reader

Highlight text and read it through a speed-reader widget

Speed Reader क्या है?

Speed Reader keithmgould द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight text and read it through a speed-reader widget"।

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

screenshot

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

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

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

                        Most (80%) of your reading time is used to physically move your eyeballs. This Chrome extension takes your block of selected text and presents it to you one word at a time. This eliminates eye movement, drastically speeding up your reading time.

In the screenshot, you can see how the extension works:
1) Select a block of text
2) Click on the 'eye' icon at the upper right hand corner of your browser
3) Set a speed (automatically saved for next time)
4) Hit Start
5) Read Very Quickly :)                    

एक्सटेंशन की मूल जानकारी

नाम Speed Reader Speed Reader
ID lpjokkihnnennblbchdhmpkmapbdkinb
आधिकारिक URL https://chrome.google.com/webstore/detail/speed-reader/lpjokkihnnennblbchdhmpkmapbdkinb
विवरण Highlight text and read it through a speed-reader widget
फ़ाइल का आकार 119 KB
स्थापना संख्या 62
वर्तमान संस्करण 0.2
अंतिम अपडेट 2014-03-02
प्रकाशन तिथि 2014-03-02
रेटिंग 2.00/5 कुल 3 रेटिंग्स
डेवलपर keithmgould
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/keithmgould/speedreader-chrome-extension
सहायता पृष्ठ URL https://github.com/keithmgould/speedreader-chrome-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speed Reader",
    "description": "Highlight text and read it through a speed-reader widget",
    "version": "0.2",
    "browser_action": {
        "default_icon": "images\/eye16.png",
        "default_title": "Yay Speed Reader"
    },
    "icons": {
        "128": "images\/eye128.png",
        "48": "images\/eye48.png",
        "16": "images\/eye16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/jquery-ui-1.10.4.custom.min.css",
                "css\/speed_reader.css"
            ],
            "js": [
                "js\/jquery-2.1.0.min.js",
                "js\/jquery-ui-1.10.4.custom.min.js",
                "js\/speed_reader.js",
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "notifications",
        "storage"
    ],
    "web_accessible_resources": [
        "css\/images\/*.png"
    ]
}