ADHD Reader

Helping neurodiverse population to read faster on websites

ADHD Readerคืออะไร?

ADHD Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lehtuska.com และคุณลักษณะหลักของมันคือ "Helping neurodiverse population to read faster on websites"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ADHD Reader

ดาวน์โหลดไฟล์ส่วนขยาย ADHD Reader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        ADHD Reader is a chrome extension that helps you read faster by highlighting beginning of every word on the websites.

CHANGELOG:
- [2023-09-18] Error handling optimization
- [2023-09-18] Performance enhance for infinite scroll sites
- [2023-09-18] Performance optimization for longread sites
- [2023-08-04] Add bug report link
- [2023-08-04] Fix performance issues
- [2023-04-12] Feature for keeping ADHD Reader always active
- [2023-04-12] Support for SPAs (page change inside website)
- [2023-04-12] Support for infinite scroll pages
- [2023-04-12] Fixed for Refresh (remembers if activated)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ADHD Reader ADHD Reader
ID gcbchiambcokahmamemkoadlanaealmf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adhd-reader/gcbchiambcokahmamemkoadlanaealmf
คำอธิบาย Helping neurodiverse population to read faster on websites
ขนาดไฟล์ 27.5 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2023-09-19
วันที่เผยแพร่ 2022-09-17
คะแนน 3.46/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา https://lehtuska.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://adhd-reader.lehtuska.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ADHD Reader",
    "description": "Helping neurodiverse population to read faster on websites",
    "version": "0.0.4",
    "manifest_version": 3,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "action": {
        "default_title": "Click to activate",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/adhd-reader-icon-16-disabled.png",
            "32": "\/images\/adhd-reader-icon-32-disabled.png",
            "48": "\/images\/adhd-reader-icon-48-disabled.png",
            "128": "\/images\/adhd-reader-icon-128-disabled.png"
        }
    },
    "icons": {
        "16": "\/images\/adhd-reader-icon-16.png",
        "32": "\/images\/adhd-reader-icon-32.png",
        "48": "\/images\/adhd-reader-icon-48.png",
        "128": "\/images\/adhd-reader-icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "myscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}