qutebrowser: YT: click dismissable elements
This removes ads for Youtube Premium and also the Youtube Shorts shelf (which is garbage anyways)
This commit is contained in:
parent
6892176569
commit
a5c1ad6af0
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name Auto Remove Ads
|
||||
// @version 1.0.1
|
||||
// @version 1.0.2
|
||||
// @description Autoremove static ads
|
||||
// @author Alexander Bocken
|
||||
// @match *://*.youtube.com/*
|
||||
@ -11,4 +11,5 @@ setInterval(() => {
|
||||
el => {
|
||||
el.remove();
|
||||
})
|
||||
document.querySelectorAll('[aria-label="Not interested"]').forEach(el => { el.click() })
|
||||
}, 50)
|
||||
|
Loading…
Reference in New Issue
Block a user