Files
stuff/yt-no-inline-ads.js

17 lines
443 B
JavaScript
Raw Normal View History

2026-04-17 11:39:29 +02:00
// ==UserScript==
// @name Remove YT Inline Ads
// @version 1.0.0
// @description Removes YT Inline Ads
// @author phga
// @match *://*.youtube.com/*
// @exclude *://*.youtube.com/subscribe_embed?*
// ==/UserScript==
const removeAds = () => {
const ads = [...document.querySelectorAll('ytd-ad-slot-renderer')];
if (ads.length > 0) {
ads.forEach(e => e.remove());
}
}
setInterval(removeAds, 2000);