Read Timer

Read timer learns your read speed and tells you how long it will take to read an article online.

Read Timerคืออะไร?

Read Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Viraj Prabhu และคุณลักษณะหลักของมันคือ "Read timer learns your read speed and tells you how long it will take to read an article online."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Read Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Read Timer provides an estimate in minutes of the time it will take to read an article on a webpage. 

The user first enters his/her read speed in words/minute (WPM) in the options tab of the extension. This speed is further fine tuned by learning the user's average speed across pages as he uses the extension.

On clicking the Read Timer icon, the webpage is intelligently parsed to extract only the article text and ignore other navigational/HTML/advertisement content. The word count of the article text is obtained. 

The read speed and the word count of the current article are then used to compute an estimate of the total time it will take to read the article. An estimate of the time remaining is also provided based on the user's current scroll position in the page.

Disclaimer: This extension is a work in progress. It has presently been tested only on blogs and may not be able to parse / produce inaccurate results for other kinds of websites. Please report any failure cases where you think such a feature would be useful by raising an issue at https://goo.gl/uU5mE8.
 
NOTE: Ensure you have the latest version of Google Chrome to run this extension.

Authored by Viraj Prabhu and Parameswaran D. The extension is open source and the code is available at https://goo.gl/2LOclw. Please contribute!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Read Timer Read Timer
ID ojcneamhcbpginfcagjnmeeegbhpngdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/read-timer/ojcneamhcbpginfcagjnmeeegbhpngdk
คำอธิบาย Read timer learns your read speed and tells you how long it will take to read an article online.
ขนาดไฟล์ 42.58 KB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2015-10-22
วันที่เผยแพร่ 2015-10-22
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Viraj Prabhu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Read Timer",
    "description": "Read timer learns your read speed and tells you how long it will take to read an article online.",
    "version": "1.0.1",
    "author": "Viraj Prabhu & Parameswaran D",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Read Timer",
        "default_icon": "hourglass.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ]
}