17 lines
443 B
JavaScript
17 lines
443 B
JavaScript
|
|
// ==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);
|