Premium Only Content
How to Remove Rumble Shorts Everywhere (Website Only – Any Browser with Tampermonkey)
Click See More to copy the script below.
Join Pickax: https://pickax.com/?referralCode=9bgj0rc&refSource=copy
🎥 Learn how to remove Rumble Shorts everywhere using Tampermonkey! In this quick tutorial from “Mastering Rumble,” I’ll walk you through the simple steps to completely hide Shorts across Rumble — including the homepage, channel pages, playlists, and search — on any browser.
📋 Script to Copy and Paste:
// ==UserScript==
// @name Rumble – Hide Shorts Everywhere
// @version 9.7
// @description 9.6 stable core + user pages handled safely for Firefox
// @match https://rumble.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
(function () {
'use strict';
const path = location.pathname;
const isChannelPage = /^\/c\//.test(path);
const isUserPage = /^\/(user|u)\//.test(path) || /^\/@/.test(path);
const isAccountPage = path.includes('/account/');
/* ============================================================
===== CHANNEL + USER PAGE (9.7 ENGINE — SAFER FOR FIREFOX) ===
============================================================ */
if ((isChannelPage || isUserPage) && !isAccountPage) {
const style = document.createElement('style');
style.textContent = `
rum-shorts-row { display: none !important; }
use[href="#shorts_label"] { display: none !important; }
/* Remove ALL Shorts UI */
.channel-subheader--menu-item[href*="/shorts"],
.main-menu-item__nav[href*="/shorts"],
a[href^="/c/"][href*="/shorts"],
a[href^="/shorts"],
button[aria-label*="Shorts"] {
display: none !important;
}
.thumbnail_grid, .grid {
row-gap: 1.5rem !important;
margin-top: 1.5rem !important;
}
.videostream, article.video-item {
margin-bottom: 1.5rem !important;
}
section.py-6.mb-6.border-solid.border-y {
display: none !important;
}
`;
document.documentElement.appendChild(style);
function hideShortsCards(root = document) {
root.querySelectorAll('.videostream, article.video-item').forEach(card => {
if (
card.querySelector('use[href="#shorts_label"]') ||
card.querySelector('a[href^="/shorts/"]')
) {
// Safer for Firefox: hide instead of remove
card.style.display = 'none';
}
});
}
function hideDividers(root = document) {
root.querySelectorAll('section.py-6.mb-6.border-solid.border-y').forEach(section => {
const hasVideos = section.querySelector('.videostream, article.video-item');
const hasShortRow = section.querySelector('rum-shorts-row');
const hasRealContent = section.textContent.trim().length > 10;
if (!hasVideos && !hasShortRow && !hasRealContent) {
section.style.display = 'none';
}
});
}
function hideShortsUI(root = document) {
root.querySelectorAll('a, button').forEach(el => {
const href = el.getAttribute?.('href') || '';
const text = el.textContent?.trim().toLowerCase();
if (
href.includes('/shorts') ||
(el.classList.contains('main-menu-item__nav') && href.includes('shorts')) ||
text === 'shorts' ||
text === 'shorts beta'
) {
el.style.display = 'none';
}
});
}
const observer = new MutationObserver(mutations => {
for (const m of mutations) {
for (const node of m.addedNodes) {
if (node.nodeType !== 1) continue;
// Add tiny delay on user pages to prevent Firefox flashes
if (isUserPage) {
setTimeout(() => {
hideShortsCards(node);
hideDividers(node);
hideShortsUI(node);
}, 50);
} else {
hideShortsCards(node);
hideDividers(node);
hideShortsUI(node);
}
}
}
});
observer.observe(document.documentElement, { childList: true, subtree: true });
document.addEventListener('DOMContentLoaded', () => {
hideShortsCards();
hideDividers();
hideShortsUI();
});
return;
}
/* ============================================================
================= GLOBAL LOGIC (UNCHANGED) ===================
============================================================ */
const style = document.createElement('style');
style.textContent = `
rum-shorts-row { display: none !important; }
body:not([class*="account"]) rum-shorts-row { display: none !important; }
body:not([class*="account"]) use[href="#shorts_label"] { display: none !important; }
.thumbnail_grid, .grid { row-gap: 1.5rem !important; }
section:has(rum-shorts-row),
div:has(rum-shorts-row) { display: none !important; }
section:has(use[href="#shorts_label"]),
div:has(use[href="#shorts_label"]) {
opacity: 0 !important;
height: 0 !important;
overflow: hidden !important;
}
section.homepage-section[rum-ignore]:not(:has(.videostream)):not(:has(rum-shorts-row)):not(:has(article)):has(.js-rac-desktop-container) {
display: none !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
}
li.videostream__details[data-video-id]:has(.videostream__list-index):not(:has(img)):not(:has(a)) {
display: none !important;
visibility: hidden !important;
}
`;
document.documentElement.appendChild(style);
function hideShortsUI(root = document) {
if (isAccountPage) return;
root.querySelectorAll('a, button').forEach(el => {
const text = el.textContent?.trim().toLowerCase();
const href = el.getAttribute?.('href');
if (text === 'shorts' || text === 'shorts beta') el.style.display = 'none';
if (href && href.startsWith('/shorts')) el.style.display = 'none';
});
}
function removeShortsCards(root = document) {
if (isAccountPage) return;
root.querySelectorAll('.videostream, article.video-item').forEach(card => {
if (
card.querySelector('use[href="#shorts_label"]') ||
card.querySelector('a[href^="/shorts/"]')
) card.style.display = 'none'; // safer than remove
});
}
const observerGlobal = new MutationObserver(mutations => {
for (const m of mutations) {
for (const node of m.addedNodes) {
if (node.nodeType !== 1) continue;
hideShortsUI(node);
removeShortsCards(node);
}
}
});
observerGlobal.observe(document.documentElement, { childList: true, subtree: true });
document.addEventListener('DOMContentLoaded', () => {
hideShortsUI();
removeShortsCards();
});
})();
👍 If this guide helped you clean up Rumble, give it a thumbs up and consider following for more Rumble tips, fixes, and tutorials. Have questions or run into issues? Leave a comment — happy to help.
🌟 Thanks for watching “Mastering Rumble.” Stay tuned for more helpful Rumble tips and tricks. Happy browsing!
-
2:29
Mastering Rumble
2 years ago $2.40 earnedMastering the Rumble: A Comprehensive Guide to Live Streaming
2.73K5 -
55:18
Coin Stories with Natalie Brunell
18 hours agoLyn Alden: Why This Bitcoin Cycle Was a Disappointment, And What Comes Next
9.93K4 -
14:41
James Klüg
2 days agoAnti-ICE Activists RAGE QUIT After I Call Them Out
14.7K22 -
16:12
Actual Justice Warrior
3 days agoSeattle Democrats SHOCKED After Minimum Wage BACKFIRES
17.2K40 -
1:57:57
MG Show
19 hours agoDespite Epstein’s Toxicity Steve Bannon Stood by Him; Planned Russia Hoax
18.2K15 -
27:24
Liberty Vault
3 days agoJoe Rogan Uncovers the Most HORRIFYING Revelations from the Epstein Files
10.1K13 -
5:35
SethDrums
4 days agoEminem - Without Me if it was in the 1950s
16K5 -
2:08:28
Side Scrollers Podcast
20 hours agoSide Scrollers Podcast Live | Tuesday February 17th 2026
54.1K16 -
6:48
MattMorseTV
12 hours ago $7.49 earnedThune just GAVE the ORDER.
27.3K43 -
1:03:01
Sam Tripoli
1 day ago $4.72 earnedCash Daddies #255: Burry vs. Palantir + Epstein Files Firings + Iran Negotiations/Oil
23.9K8