Hyper Bold

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

ما هو Hyper Bold؟

Hyper Bold هو إضافة Chrome تم تطويرها بواسطة hyperboldextension، والميزة الرئيسية لها هي "An accessability extension for those with ADHD who struggle to read text on the web.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Hyper Bold

قم بتنزيل ملفات الامتداد Hyper Bold بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Hyper Bold Hyper Bold
ID bjicoipahmlimcmjoejgaoneibennoab
عنوان URL الرسمي https://chromewebstore.google.com/detail/hyper-bold/bjicoipahmlimcmjoejgaoneibennoab
الوصف An accessability extension for those with ADHD who struggle to read text on the web.
حجم الملف 25.96 KB
عدد التثبيتات 13,299
النسخة الحالية 0.0.0.1
آخر تحديث 2023-02-28
تاريخ النشر 2023-02-28
تقييم 3.67/5 مجموع تقييمات 27
المطور hyperboldextension
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
        }
    ]
}