Hyper Bold

An accessability extension for those with ADHD who struggle to read text on the web.

¿Qué es Hyper Bold?

Hyper Bold es una extensión de Chrome desarrollada por hyperboldextension, y su función principal es "An accessability extension for those with ADHD who struggle to read text on the web.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Hyper Bold

Descarga archivos de extensión Hyper Bold 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

                        HyperBold is an extensions which bolds the first half of mode words within readable text on a page. Similar techniques have been used to enhance the reading capabilities of those with ADHD. This extension works in real time on the page at the moment and is intended to be used with web-browsing. 

If you struggle with reading large paragraphs of text, or wish to simply read faster then this extension may help you.                    

Información Básica de la Extensión

Nombre Hyper Bold Hyper Bold
ID bjicoipahmlimcmjoejgaoneibennoab
URL Oficial https://chromewebstore.google.com/detail/hyper-bold/bjicoipahmlimcmjoejgaoneibennoab
Descripción An accessability extension for those with ADHD who struggle to read text on the web.
Tamaño del Archivo 25.96 KB
Cantidad de Instalaciones 13,299
Versión Actual 0.0.0.1
Última Actualización 2023-02-28
Fecha de Publicación 2023-02-28
Calificación 3.67/5 Total de 27 Calificaciones
Desarrollador hyperboldextension
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hyper Bold",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "description": "An accessability extension for those with ADHD who struggle to read text on the web.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Highlight First Syllable",
        "default_popup": "popup.html",
        "default_icon": "active.png"
    },
    "icons": {
        "128": "active.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}