Build your own website blocker that displays motivational quotes instead of distracting content
This article has been refreshed with the latest screen time statistics, updated alternative extensions, and current best practices. Originally published December 2023.
How many times do you find yourself at the end of the day realizing you did nothing productive? In this age of technology, we have a new challenge that our predecessors didn't have: DISTRACTION.
According to Fortune, Americans spend an average of 5 hours and 16 minutes on their phones daily in 2026 - a 14% increase from 2024. We check our phones approximately 186 times per day.
Additionally, people now spend over 2.5 hours daily on social media, hopping between an average of 6.75 different social networks per month. We all are trying to counter this habit in multiple ways.
One solution that works for me is to block websites. There are paid solutions available, but why pay if we can write one ourselves?
In this tutorial, I share a Chrome extension that not only blocks distracting websites but also presents motivational quotes every time you try to visit a blocked website.
The full source code is available on my GitHub repository.
The extension uses Chrome's webRequest API to intercept requests to blocked domains. Here's a simplified view of the core blocking logic:
// background.js - Core blocking logic
const blockedSites = [
"*://*.facebook.com/*",
"*://*.twitter.com/*",
"*://*.instagram.com/*",
"*://*.reddit.com/*"
];
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
return { redirectUrl: chrome.runtime.getURL("blocked.html") };
},
{ urls: blockedSites },
["blocking"]
);
chrome://extensions/background.js to customize your blocked websitesThe video below explains how to set up the extension and demonstrates how it works in practice:
If you prefer a ready-made solution, here are some popular website blocker extensions available in 2026:
| Extension | Key Features | Price |
|---|---|---|
| BlockSite | Usage limits, focus mode, password protection | Free / Premium |
| StayFocusd | Time allowances, nuclear option, customizable schedules | Free |
| Freedom | Cross-device blocking, session scheduling, locked mode | Paid |
| Cold Turkey | Unbypassable blocks, scheduling, app blocking | Free / Pro |
Continue your productivity and web development journey with these related guides: