Bookmarklets: Updated Ad-Free Youtube Example

Update your bookmarklet. TLDR use this new one now. javascript:eval(atob('c2V0SW50ZXJ2YWwoZnVuY3Rpb24gKCkgewogIGZvciAoZSBvZiBbCiAgICAuLi5kb2N1bWVudC5nZXRFbGVtZW50c0J5Q2xhc3NOYW1lKCd5dHAtc2tpcC1hZC1idXR0b24nKSwKICAgIC4uLmRvY3VtZW50LmdldEVsZW1lbnRzQnlDbGFzc05hbWUoJ3l0cC1hZC1za2lwLWJ1dHRvbi1tb2Rlcm4geXRwLWJ1dHRvbicpLAogICAgLi4uZG9jdW1lbnQuZ2V0RWxlbWVudHNCeUNsYXNzTmFtZSgneXRwLWFkLXNraXAtYnV0dG9uIHl0cC1idXR0b24nKSwKICBdKSB7IGUuY2xpY2soKTsgfQp9LCAxMDAwKQ==')) Here is the decoded javascript setInterval(function () { for (e of [ ...document.getElementsByClassName('ytp-skip-ad-button'), ...document.getElementsByClassName('ytp-ad-skip-button-modern ytp-button'), ...document.getElementsByClassName('ytp-ad-skip-button ytp-button'), ]) { e.click(); } }, 1000) It seems the skip ad button is now referred to as the ‘ytp-skip-ad-button’. Fun times.

April 19, 2024 · Louis Buchbinder

Bookmarklets: Updated Ad-Free Youtube Example

Update your bookmarklet. The latest yt-skip-ad bookmarklet is here. Updated April 19 2024 javascript:eval(atob('c2V0SW50ZXJ2YWwoZnVuY3Rpb24gKCkgewogIGZvciAoZSBvZiBkb2N1bWVudC5nZXRFbGVtZW50c0J5Q2xhc3NOYW1lKCd5dHAtYWQtc2tpcC1idXR0b24tbW9kZXJuIHl0cC1idXR0b24nKSkgewogICAgZS5jbGljaygpCiAgfQogIGZvciAoZSBvZiBkb2N1bWVudC5nZXRFbGVtZW50c0J5Q2xhc3NOYW1lKCd5dHAtYWQtc2tpcC1idXR0b24geXRwLWJ1dHRvbicpKSB7CiAgICBlLmNsaWNrKCkKICB9Cn0sIDEwMDApCg==')) Here is the decoded javascript setInterval(function () { for (e of document.getElementsByClassName('ytp-ad-skip-button-modern ytp-button')) { e.click() } for (e of document.getElementsByClassName('ytp-ad-skip-button ytp-button')) { e.click() } }, 1000) As you can probably tell youtube added -modern to the class name. So now we check both modern and sans modern skip ad buttons. Fun times.

December 29, 2023 · Louis Buchbinder

Bookmarklets: Ad-Free Youtube Example

The latest yt-skip-ad bookmarklet is here. Updated April 19 2024 Extend websites with custom javascript for improved browsing Check out the Bookmarkleter Tool Skip to the ad-free youtube example Extend Websites with Custom Javascript Nearly everyone familiar with using computers to browse the web is familiar with bookmarks. For those few who are not, a digital bookmark is a shortcut link to a website that is stored in a convenient list....

August 22, 2022 · Louis Buchbinder