ADHD Glasses

A web accessibility add-on designed for individuals with ADHD who experience difficulty reading text online.

What is ADHD Glasses?

ADHD Glasses is a Chrome extension developed by godzillagangcoding, and its main feature is "A web accessibility add-on designed for individuals with ADHD who experience difficulty reading text online.".

Extension Screenshots

screenshot

Download ADHD Glasses Extension CRX File

Download ADHD Glasses extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A web accessibility add-on designed for individuals with ADHD who experience difficulty reading text online. Enjoy!                    

Extension Basic Information

Name ADHD Glasses ADHD Glasses
ID llkblembfmlhagecjlhkfhjgdeajknhh
Official URL https://chromewebstore.google.com/detail/adhd-glasses/llkblembfmlhagecjlhkfhjgdeajknhh
Description A web accessibility add-on designed for individuals with ADHD who experience difficulty reading text online.
File Size 46.23 KB
Installation Count 117
Current Version 0.0.0.1
Last Updated 2023-05-15
Publish Date 2023-05-14
Rating 3.67/5 Total 3 Ratings
Developer godzillagangcoding
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ADHD Glasses",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "description": "A web accessibility add-on designed for individuals with ADHD who experience difficulty reading text online.",
    "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"
        }
    ]
}