Bionic Reading

This extension applies the Bionic Reading method to all text on a page.

¿Qué es Bionic Reading?

Bionic Reading es una extensión de Chrome desarrollada por luis.teixeira034, y su función principal es "This extension applies the Bionic Reading method to all text on a page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bionic Reading

Descarga archivos de extensión Bionic Reading 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

                        Bionic Reading is designed to revolutionize the way you consume text online. It uses a unique method that enhances readability and comprehension by emphasizing core parts of words within the text.

The key features of Bionic Reading include:

Enhanced Comprehension: By bolding the first half of each word, Bionic Reading encourages readers to focus on the fundamental parts of each word, enhancing overall comprehension.

Reduced Eye Strain: Our method of highlighting parts of words can reduce eye strain and fatigue, making for a more comfortable reading experience.

Customized Reading Experience: With the simple click of a button, you can enable or disable Bionic Reading on any webpage you're viewing.

Privacy Focused: The processing is done entirely on your computer - we don't see or store any of the text you read.

Whether you're a student trying to power through dense academic papers, a professional navigating lengthy reports, or an avid reader exploring the vast world of online literature, Bionic Reading can make your reading experience more engaging and efficient.

Try Bionic Reading today and discover a whole new way to engage with text!                    

Información Básica de la Extensión

Nombre Bionic Reading Bionic Reading
ID jgggbeeolmfddegkkfcidnjeacndgakd
URL Oficial https://chromewebstore.google.com/detail/bionic-reading/jgggbeeolmfddegkkfcidnjeacndgakd
Descripción This extension applies the Bionic Reading method to all text on a page.
Tamaño del Archivo 33.39 KB
Cantidad de Instalaciones 1,218
Versión Actual 1.0
Última Actualización 2023-05-16
Fecha de Publicación 2023-05-15
Calificación 3.40/5 Total de 5 Calificaciones
Desarrollador luis.teixeira034
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bionic Reading",
    "description": "This extension applies the Bionic Reading method to all text on a page.",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}