Hyper Bold

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

什麼是Hyper Bold?

Hyper Bold是由hyperboldextension開發的Chrome擴展程式,該擴展的主要功能是“An accessability extension for those with ADHD who struggle to read text on the web.”。

擴展截圖

screenshot

下載Hyper Bold擴展crx文件

下載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
官方網址 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"
        }
    ]
}