Blipread: page reading time

Page reading time in a minimal package.

Blipread: page reading time क्या है?

Blipread: page reading time https://intenseminimalism.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Page reading time in a minimal package."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Blipread is a simple way to see how long it takes for you to read a page.
How much time do you have? Read now or later? Here's the answer.

This extension should work on Windows, Mac and Linux.

FEATURES
—
• displays in the toolbar the time in minutes to read the page
• your reading speed can be adjusted

HOW IT WORKS
—
This extension counts the number of words on the page, and using the reading speed provided estimates how long it will take for you to read the whole page. While it's likely there are more words on the page that aren't strictly content, it's still a useful indication once adjusted for your reading speed in words per minute.


REQUESTS AND BUGS
—
Please notify me here: https://github.com/folletto/Blipread/issues                    

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

नाम Blipread: page reading time Blipread: page reading time
ID pimmlmgpidiceckodhdifoppcidlndbp
आधिकारिक URL https://chromewebstore.google.com/detail/blipread-page-reading-tim/pimmlmgpidiceckodhdifoppcidlndbp
विवरण Page reading time in a minimal package.
फ़ाइल का आकार 15.13 KB
स्थापना संख्या 867
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2023-12-28
प्रकाशन तिथि 2019-11-14
रेटिंग 4.67/5 कुल 9 रेटिंग्स
डेवलपर https://intenseminimalism.com
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/folletto/Blipread/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blipread: page reading time",
    "short_name": "Blipread",
    "version": "1.0.5",
    "description": "Page reading time in a minimal package.",
    "author": "Erin Casali",
    "options_page": "options\/index.html",
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_title": "Minutes required for you to read this page"
    },
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}