Hyper Bold

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

Qu'est-ce que Hyper Bold ?

Hyper Bold est une extension Chrome développée par hyperboldextension, et sa fonction principale est "An accessability extension for those with ADHD who struggle to read text on the web.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hyper Bold

Téléchargez les fichiers d'extension Hyper Bold au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hyper Bold Hyper Bold
ID bjicoipahmlimcmjoejgaoneibennoab
URL Officiel https://chromewebstore.google.com/detail/hyper-bold/bjicoipahmlimcmjoejgaoneibennoab
Description An accessability extension for those with ADHD who struggle to read text on the web.
Taille du Fichier 25.96 KB
Nombre d'Installations 13,299
Version Actuelle 0.0.0.1
Dernière Mise à Jour 2023-02-28
Date de Publication 2023-02-28
Évaluation 3.67/5 Total 27 Évaluations
Développeur hyperboldextension
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}