{"id":50897647,"url":"https://github.com/ijshd7/collabora","last_synced_at":"2026-06-16T01:31:12.447Z","repository":{"id":343080890,"uuid":"1173858342","full_name":"ijshd7/collabora","owner":"ijshd7","description":"Chrome extension for ADHD and cognitive load support. Reduces distractions, improves readability, and helps maintain focus while reading online.","archived":false,"fork":false,"pushed_at":"2026-03-16T18:33:18.000Z","size":161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-17T05:31:39.040Z","etag":null,"topics":["accessibility","adhd","chrome-extension","focus","manifest-v3","productivity","reading"],"latest_commit_sha":null,"homepage":"https://github.com/ijshd7/collabora","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ijshd7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-05T20:33:04.000Z","updated_at":"2026-03-16T18:33:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ijshd7/collabora","commit_stats":null,"previous_names":["ijshd7/collabora"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ijshd7/collabora","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijshd7%2Fcollabora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijshd7%2Fcollabora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijshd7%2Fcollabora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijshd7%2Fcollabora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ijshd7","download_url":"https://codeload.github.com/ijshd7/collabora/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijshd7%2Fcollabora/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34387472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["accessibility","adhd","chrome-extension","focus","manifest-v3","productivity","reading"],"created_at":"2026-06-16T01:31:11.682Z","updated_at":"2026-06-16T01:31:12.440Z","avatar_url":"https://github.com/ijshd7.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Collabora — Reading \u0026 Focus Suite\n\n[![CI](https://github.com/ijshd7/collabora/actions/workflows/test.yml/badge.svg)](https://github.com/ijshd7/collabora/actions/workflows/test.yml)\n\nA Chrome extension providing ADHD and cognitive load support. Reduce distractions, improve readability, and maintain focus while reading online.\n\n## Features\n\n- **Motion Reducer** — Pauses GIFs, CSS animations, and auto-playing media to reduce visual noise\n- **Distraction Blocker** — Strips ads, sidebars, auto-playing media, and floating elements with three intensity levels (gentle, moderate, aggressive). Optional toggle to hide comment sections.\n- **Font Adjuster** — Per-site font family, size, and line-height customization; includes accessibility-friendly fonts like OpenDyslexic and Lexend\n- **Reading Ruler** — A focus overlay that dims everything except the line you're reading, helping maintain your place in long text\n- **Progress Indicator** — Displays a scroll progress bar and estimated read time for the current page\n- **Focus Reader** — Text-to-speech with word-by-word highlighting, powered by the Web Speech API\n- **Focus Timer** — Pomodoro-style session timer with configurable focus/break durations; shows an unobtrusive in-page countdown and gentle break reminders\n- **Link Dimmer** — Visually mutes hyperlinks to reduce \"rabbit hole\" impulses while reading; optional confirm-before-navigate prompt\n- **Color Contrast Adjuster** — Applies CSS filter presets (warm, cool/dark, high contrast, or custom) to improve screen readability\n\n## Installation\n\n1. Clone this repository\n2. Open `chrome://extensions` in Chrome\n3. Enable **Developer mode** (top right)\n4. Click **Load unpacked** and select the `collabora` folder\n5. The extension icon appears in your toolbar\n\n## Usage\n\nClick the extension icon to open the popup. Each feature has a toggle switch and optional settings that expand when enabled. Settings are saved per-site automatically.\n\n### Keyboard Shortcuts\n\n| Shortcut | Action |\n|---|---|\n| `Alt+Shift+M` | Toggle Motion Reducer |\n| `Alt+Shift+D` | Toggle Distraction Blocker |\n| `Alt+Shift+F` | Toggle Font Adjuster |\n| `Alt+Shift+R` | Toggle Reading Ruler |\n\nFocus Reader, Focus Timer, and Link Dimmer have no default shortcuts; assign them at `chrome://extensions/shortcuts`. All shortcuts can be customized there.\n\n## Architecture\n\n```\ncollabora/\n├── manifest.json              # MV3 manifest\n├── background/\n│   └── service-worker.js      # Message relay, shortcut handling\n├── content/\n│   ├── bootstrap.js           # Entry point, message listener\n│   ├── shared/                # Storage, feature manager, DOM helpers\n│   ├── features/              # One folder per feature (JS + CSS)\n│   └── styles/                # Base CSS custom properties\n├── popup/                     # Extension popup UI\n└── tests/\n    ├── manual/                # Manual test page\n    └── unit/                  # Jest unit tests\n```\n\nAll features are independently toggleable and use a shared registration system (`feature-manager.js`). CSS is always loaded but gated behind `body[data-collabora-{feature}=\"active\"]` attributes, so toggling is instant. Per-site preferences are stored in `chrome.storage.local` with global/site-specific merge logic.\n\n## Testing\n\n- **Automated:** Run `npm test` for the Jest unit test suite (site-key, storage, feature-manager, dom-helpers, distraction-blocker, focus-timer, link-dimmer, service-worker).\n- **Manual:** Open `tests/manual/test-page.html` in the browser with the extension loaded. The page includes test sections for each feature: animated elements, fake ads, comments, long-form text, autoplay media, color test images, focus timer, and link dimmer.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijshd7%2Fcollabora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fijshd7%2Fcollabora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fijshd7%2Fcollabora/lists"}