ADHD Reader

Helping neurodiverse population to read faster on websites

Cos'è ADHD Reader?

ADHD Reader è un'estensione di Chrome sviluppata da https://lehtuska.com, e la sua funzione principale è "Helping neurodiverse population to read faster on websites".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ADHD Reader

Scarica i file di estensione ADHD Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome ADHD Reader ADHD Reader
ID gcbchiambcokahmamemkoadlanaealmf
URL Ufficiale https://chromewebstore.google.com/detail/adhd-reader/gcbchiambcokahmamemkoadlanaealmf
Descrizione Helping neurodiverse population to read faster on websites
Dimensione del File 27.5 KB
Conteggio Installazioni 10,000
Versione Corrente 0.0.4
Ultimo Aggiornamento 2023-09-19
Data di Pubblicazione 2022-09-17
Valutazione 3.46/5 Totale 26 Valutazioni
Sviluppatore https://lehtuska.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://adhd-reader.lehtuska.com
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}