Skip to content

Instantly share code, notes, and snippets.

@scarlac
Created February 16, 2026 07:18
Show Gist options
  • Select an option

  • Save scarlac/d58a5966c97dfa743b0a7bbae7d84445 to your computer and use it in GitHub Desktop.

Select an option

Save scarlac/d58a5966c97dfa743b0a7bbae7d84445 to your computer and use it in GitHub Desktop.
UserScript to remove Facebook Reels from your feed
// ==UserScript==
// @name No FB shorts
// @match https://www.facebook.com/*
// ==/UserScript==
setInterval(() => {
Array.from(document.querySelectorAll('span')).filter(e => e.innerText === 'Reels').forEach(el => el.closest('[data-pagelet^="FeedUnit_"]')?.remove());
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment