Social media sites like Facebook, LinkedIn, and Twitter are designed to funnel you to the feed, where infinite scrolling often leads to mindless browsing. Blocking these sites isn't practical when you need them for business use.
NoFeeds is a simple, side-loadable browser extension that redirects you away from the default feed page to your profile, allowing you to use the site fully while effectively disabling the feed.
- Security: This extension requires the highly sensitive
tabsand<all_urls>permissions. Sideloading eliminates risks associated with marketplace extensions, such as anonymous publishers, malicious takeovers, and forced auto-updates. - Customization: Modify the
redirectRulesdirectly in the source code and reload the extension to apply changes. - Transparency: The extension is ultra-lightweight with just two files and fewer than 100 lines of code—easy to review and modify.
-
Enable Developer Mode:
- Navigate to your extensions page:
- Chrome:
chrome://extensions - Edge:
edge://extensions - Brave:
brave://extensions - Opera:
opera://extensions
- Chrome:
- Toggle Developer mode in the top-right corner
- Navigate to your extensions page:
-
Load the Extension:
- Download or clone this repository
- Click Load unpacked and select the
dist/directory
- Navigate to
about:debugging#/runtime/this-firefox - Click Load Temporary Add-on
- Download or clone this repository
- Select the
manifest.jsonfile in thedist/directory
To add additional social media sites:
- Open
dist/background.js - Add a new entry to the
redirectRulesarray:
const redirectRules = [
// ... existing rules
{
// The full feed URL
feedUrl: "https://www.newsite.com/feed/",
// The URL to redirect to
profileUrl: "https://newsite.com/profile/",
},
]Tips:
- Use the generic profile redirect URL when available (e.g.,
facebook.com/meredirects to your profile) - Save your changes and reload the extension:
- Chromium: Go to your extensions page and click the reload button
- Firefox: Go to
about:debugging#/runtime/this-firefoxand click reload
This project is licensed under the MIT License.