A tactical daily planner built for focus. Tasks, timers, quick launch, and progress all in your new tab.
Download the app on the Chrome Web Store
To-Done Rocket Planner turns a new-tab style popup into a compact task workspace. It supports fast task capture, task completion tracking, quick actions, focus timers, weekly stats, and a dark mode preference that persists across sessions.
- Add, complete, edit, reorder, and delete task items
- Track mission progress with a live completion percentage
- Save and reuse quick action shortcuts
- Capture the current browser tab into a task
- Run focus sessions with a built-in timer and pomodoro count
- Show a temporary carry-over banner for focus session updates
- View weekly completion stats from the popup
- Toggle dark mode and keep the preference saved with Chrome sync storage
- Use time-based greeting states and dynamic header visuals
popup.htmlcontains the extension popup layoutpopup.csshandles the retro-styled interface and dark theme overridesjs/script.jsdrives task rendering, timer state, stats, banners, and theme persistence
- JavaScript
- HTML
- CSS
- Chrome Extension APIs
chrome.storage.syncfor persistent preferences and app state
.
├── manifest.json
├── popup.html
├── popup.css
├── js/
│ ├── background.js
│ ├── script.js
│ ├── action-items-utils.js
│ └── circle.js
├── images/
└── packages/
- Clone the repository.
- Open
chrome://extensions/in Chrome. - Enable Developer Mode.
- Click Load unpacked.
- Select the project folder.
storagefor saving tasks, preferences, and timer statetabsfor capturing the current browser tabalarmsfor timer-related behaviorcontextMenusfor browser interaction support
- The extension uses Manifest V3.
- Dark mode is controlled from the popup header and persists across browser sessions.
- No cloud sync is included yet; state is kept locally through Chrome storage.
- Cloud sync across devices
- Task filtering and categorization
- Expanded theme customization
- Better analytics for task completion and focus sessions


