ADHD Reader

Helping neurodiverse population to read faster on websites

Co to jest ADHD Reader?

ADHD Reader to rozszerzenie Chrome opracowane przez https://lehtuska.com, a jego główną funkcją jest „Helping neurodiverse population to read faster on websites”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ADHD Reader

Pobierz pliki rozszerzeń ADHD Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa ADHD Reader ADHD Reader
ID gcbchiambcokahmamemkoadlanaealmf
Oficjalny URL https://chromewebstore.google.com/detail/adhd-reader/gcbchiambcokahmamemkoadlanaealmf
Opis Helping neurodiverse population to read faster on websites
Rozmiar pliku 27.5 KB
Liczba instalacji 10,000
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2023-09-19
Data Publikacji 2022-09-17
Ocena 3.46/5 Łącznie 26 Oceny
Deweloper https://lehtuska.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://adhd-reader.lehtuska.com
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}