Hyper Bold

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

Was ist Hyper Bold?

Hyper Bold ist eine Chrome-Erweiterung, die von hyperboldextension entwickelt wurde, und ihr Hauptmerkmal ist "An accessability extension for those with ADHD who struggle to read text on the web.".

Erweiterungsscreenshots

screenshot

Hyper Bold-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hyper Bold-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hyper Bold Hyper Bold
ID bjicoipahmlimcmjoejgaoneibennoab
Offizielle URL https://chromewebstore.google.com/detail/hyper-bold/bjicoipahmlimcmjoejgaoneibennoab
Beschreibung An accessability extension for those with ADHD who struggle to read text on the web.
Dateigröße 25.96 KB
Installationsanzahl 13,299
Aktuelle Version 0.0.0.1
Letztes Update 2023-02-28
Veröffentlichungsdatum 2023-02-28
Bewertung 3.67/5 Insgesamt 27 Bewertungen
Entwickler hyperboldextension
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}