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
公式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
Eメール [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"
        }
    ]
}