I Built a Chrome Extension to Block Distracting Sites and Fix My Pomodoro Timer — Here's What I Learned
The author created a Chrome extension called Ashdeck to address productivity issues caused by distractions during task transitions. By replacing the new tab page with a Pomodoro timer and task list, the extension aims to eliminate the temptation to visit distracting sites. The author shares insights on user reactions and the importance of the new tab page in enhancing productivity.
- ▪The author realized that the blank new tab page was a major distraction during task transitions.
- ▪Ashdeck replaces the new tab page with a Pomodoro timer, task list, and site blocker to improve focus.
- ▪User feedback has been polarized, with some embracing the extension while others reject the idea of changing their new tab page.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2859247) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Promise Uzoechi Posted on May 30 I Built a Chrome Extension to Block Distracting Sites and Fix My Pomodoro Timer — Here's What I Learned #productivity #extensions #opensource #showdev Let me be honest about something embarrassing. I've read Deep Work. I've read Atomic Habits. I had a colour-coded Notion workspace that would make a productivity influencer cry with joy. I used three different Pomodoro apps across three years. I had a site blocker installed.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).