EasyView — Clarity for Every Brain version history - 7 versions
EasyView — Clarity for Every Brain by Apoorv Gupta
EasyView — Clarity for Every Brain version history - 7 versions
Be careful with old versions! These versions are displayed for testing and reference purposes.You should always use the latest version of an add-on.
Latest version
Version 1.1.1.2
Released 17 May 2026 - 6.11 MBWorks with firefox 109.0 and laterVersion 1.1.1.2 Release Notes
1. Functional & UX Fixes:
- Fixed Converter Tab File Lock Issue: Resolved a bug unique to Firefox where clicking the document converter drop-zone would get stuck reloading the previously uploaded document from storage. The Reader now properly intercepts the redirect (mode=upload_converter) to clear storage cache and present a fresh file uploader, allowing users to seamlessly convert new.docx,.epub, and.txtfiles.
2. AMO Validator Cleanups & Optimizations:
- Cleared Prohibited API Warnings: Optimizedpopup.jsto dynamically gatechrome.fontSettingsmembers for Firefox environments, fully satisfying static analysis checks and eliminating warnings for unsupported native APIs.
- Explicit Telemetry Declarations: Restored explicit declarations inmanifest.json(data_collection_permissions:none) under browser specific settings to explicitly declare that no telemetry/analytics data is captured.Source code released under All Rights Reserved
Older versions
Version 1.1.1.1
Released 17 May 2026 - 6.11 MBWorks with firefox 109.0 and laterSource code released under All Rights Reserved
Version 1.1.1
Released 16 May 2026 - 6.11 MBWorks with firefox 109.0 and laterSource code released under All Rights Reserved
Version 1.1.0.3
Released 11 May 2026 - 6.06 MBWorks with firefox 109.0 and laterSource code released under All Rights Reserved
Version 1.1.0.2
Released 11 May 2026 - 6.06 MBWorks with firefox 109.0 and later• Fixed Converter Tab Autoclose: Eliminated the bug where Firefox would instantly terminate the extension whenever you clicked the upload box. Firefox users are now seamlessly redirected to the safety of the dedicated reader.html workspace instead.
• Bypassed Cache Persistence Loop: Solved the issue where re-opening the converter kept loading the old document indefinitely. Added smart URL routing (?new=true) that forces the engine to ignore browser cache and serve a clean slate for fresh uploads.
• Restored Confetti Effects: Reprogrammed the Canvas Confetti launcher on-the-fly specifically for Firefox to disable Internal Web Workers, which successfully bypasses strict browser Content Security Policies (CSP) that were blocking the render silently.Source code released under All Rights Reserved
Version 1.1.0.1
Released 11 May 2026 - 6.05 MBWorks with firefox 109.0 and laterThe previous version was crashing because:
Firefox uses non-persistent background event scripts for Manifest V3. In that specific environment, importScripts is completely undefined.
The Crash: Originally, the first line of background.js file was importScripts('gemini-service.js');. When Firefox tried to read this line, it hit a ReferenceError and instantly crashed the entire background process before registering any listeners.
The Fix: By wrapping it in if (typeof importScripts !== 'undefined'), we instruct the code:
On Firefox: Safely skip the function instead of crashing.
The update I made to my build.js explicitly embeds gemini-service.js inside the Firefox manifest array so it is automatically pre-loaded without needing that call!Source code released under All Rights Reserved
Version 1.1.0
Released 7 May 2026 - 6.05 MBWorks with firefox 109.0 and laterSource code released under All Rights Reserved