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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}