Reading Time

This extension shows the estimated reading time for a web page

Reading Time क्या है?

Reading Time fendisha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows the estimated reading time for a web page"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        A chrome extension that tells you how much time it takes to read a web page article

update
- fix breakage for the new youtube layout
- you can close the widget by clicking on it

description
- very fast calculation time using firefox readability library
- does not block rendering of the webpage as it is loaded after everything is done loading on the page
- works very well on webpage articles
- does not work well for other types of content
- can adjust the look of the widget to your liking
- it's open-source, you can contribute here github.com/usergit/read-time

privacy policy
- no data will be collected from this app
- strong privacy, does not send any of your data to any website
- no analytics or tracking of any sort                    

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

नाम Reading Time Reading Time
ID nccohhimobidpghgpnejnbkpoichbbml
आधिकारिक URL https://chromewebstore.google.com/detail/reading-time/nccohhimobidpghgpnejnbkpoichbbml
विवरण This extension shows the estimated reading time for a web page
फ़ाइल का आकार 49.79 KB
स्थापना संख्या 3,303
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2018-02-20
प्रकाशन तिथि 2018-02-20
रेटिंग 3.72/5 कुल 25 रेटिंग्स
डेवलपर fendisha
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/usergit/read-time
सहायता पृष्ठ URL https://github.com/usergit/read-time
गोपनीयता नीति पृष्ठ URL https://github.com/usergit/read-time
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reading Time",
    "short_name": "Reading Time",
    "description": "This extension shows the estimated reading time for a web page",
    "version": "1.1.1",
    "browser_action": {
        "default_popup": "popupPage\/popup.html",
        "default_title": "Reading Time"
    },
    "icons": {
        "16": "assets\/timereadicon16.png",
        "32": "assets\/timereadicon32.png",
        "48": "assets\/timereadicon48.png",
        "128": "assets\/timereadicon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "extensionSettings.js",
                "readEstimator\/Readability.js",
                "readEstimator\/estimateTime.js",
                "readEstimator\/mainContentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/*.*"
    ],
    "options_ui": {
        "page": "optionsPage\/options.html",
        "chrome_style": true
    }
}