I set out to build the app that would save the world. Embedding YouTube turned out to be the easy 10%. A developer built a Windows desktop app with Tauri and Rust that plays YouTube videos in a small always-on-top window, designed to hide quickly with a hotkey. The project was originally planned as a Chrome extension, but limitations in Chrome's extension API pushed it to a paid desktop app first. The developer found that distinguishing video buffering from YouTube blocking the video was the most time-consuming challenge. I set out to build the app that would save the world. Reader, it does not save the world. What it actually does is sit in a small always-on-top window on your desktop, play a video or read an article out loud while you pretend to be deep in a spreadsheet, and vanish completely the second you hit a hotkey because your boss just walked past your desk. Grandiose delusions of world-saving aside, here's the part of that pitch that actually mattered: this was originally supposed to ship as a free Chrome extension first, with a paid desktop version following later only if anyone cared. That's not what happened. Chrome's extension commands API only lets you register a couple of fixed shortcuts, and the user has to go rebind them from a separate chrome://extensions/shortcuts settings page, not from inside your own UI — dead on arrival for something whose entire premise is "the hide-everything key has to feel instant and yours." And getting a real always-on-top, frameless, click-through floating window to behave consistently inside an extension's sandbox turned out to need a lot more rework than I'd budgeted for. So the free extension is still on the shelf getting redesigned, and the paid Windows desktop app — Tauri, Rust backend, real OS-level global hotkeys — ended up finished and shipped to the Microsoft Store first instead. Once that decision was made, I figured the actual video feature would be the fast part: grab YouTube's IFrame Player API, drop it in a frameless window, ship it before lunch. That's not remotely how it went either. The floating-window shell and hotkeys came together fast. What ate most of the development time had nothing to do with UI: reliably telling apart "the video is buffering" from "YouTube just silently blocked this and nothing is ever coming." Since it's a small floating window, I wanted the video to fill the whole frame edge-to-edge rather than sit inside black bars — closer to how a phone lets you pinch-zoom a video than how a normal embedded player behaves. An