Blipread: page reading time

Page reading time in a minimal package.

¿Qué es Blipread: page reading time?

Blipread: page reading time es una extensión de Chrome desarrollada por https://intenseminimalism.com, y su función principal es "Page reading time in a minimal package.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Blipread: page reading time

Descarga archivos de extensión Blipread: page reading time en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Blipread: page reading time Blipread: page reading time
ID pimmlmgpidiceckodhdifoppcidlndbp
URL Oficial https://chromewebstore.google.com/detail/blipread-page-reading-tim/pimmlmgpidiceckodhdifoppcidlndbp
Descripción Page reading time in a minimal package.
Tamaño del Archivo 15.13 KB
Cantidad de Instalaciones 867
Versión Actual 1.0.5
Última Actualización 2023-12-28
Fecha de Publicación 2019-11-14
Calificación 4.67/5 Total de 9 Calificaciones
Desarrollador https://intenseminimalism.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/folletto/Blipread/issues
Idiomas Soportados 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": [
        ""
    ]
}