A tactical firewall for the human mind. Neutralizing algorithmic rabbit holes and re-engineering the DOM to protect cognitive focus.
NODE_TOPOLOGY_ACTIVE
DOM_MOD: Granular YouTube interface manipulation.
UI_OVERLAY: Persistent stopwatch tracking.
Manifest V3 with persistent service worker — keeps the focus stopwatch accurate even when the popup is closed.
Content scripts inject directly into YouTube's DOM. No iframe wrappers that break on updates.
Chrome Storage API for sync across devices. Settings follow the user, not the machine.
Modular feature flags — each productivity tool (YT control, site blocker, stopwatch) can be independently enabled.
YouTube's SPA rewrites the DOM constantly. Built mutation observers that re-inject controls after every navigation without performance degradation.
Browser extensions lose state on popup close. Moved timing logic to the service worker with chrome.alarms as a heartbeat fallback.
Extensions share the main thread. Kept total injected JS under 15KB gzipped. No frameworks, no dependencies.