Hyper Bold

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

Hyper Bold là gì?

Hyper Bold là một tiện ích mở rộng Chrome được phát triển bởi hyperboldextension, và tính năng chính của nó là "An accessability extension for those with ADHD who struggle to read text on the web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hyper Bold

Tải xuống các tệp mở rộng Hyper Bold dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hyper Bold Hyper Bold
ID bjicoipahmlimcmjoejgaoneibennoab
URL Chính Thức https://chromewebstore.google.com/detail/hyper-bold/bjicoipahmlimcmjoejgaoneibennoab
Mô tả An accessability extension for those with ADHD who struggle to read text on the web.
Kích Thước Tệp 25.96 KB
Số Lần Cài Đặt 13,299
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2023-02-28
Ngày Phát Hành 2023-02-28
Đánh Giá 3.67/5 Tổng số 27 Đánh Giá
Nhà Phát Triển hyperboldextension
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}