AutoYADM commit: 2025-06-01 22:54:18

This commit is contained in:
Daniel Fichtinger 2025-06-01 22:54:18 -04:00
parent 301e318c1e
commit 83f8525ea0
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,19 @@
// ==UserScript==
// @name Auto Skip YouTube Ads
// @version 1.1.0
// @description Speed up and skip YouTube ads automatically
// @author jso8910 and others
// @match *://*.youtube.com/*
// ==/UserScript==
document.addEventListener('load', () => {
const btn = document.querySelector('.videoAdUiSkipButton,.ytp-ad-skip-button-modern')
if (btn) {
btn.click()
}
const ad = [...document.querySelectorAll('.ad-showing')][0];
if (ad) {
document.querySelector('video').currentTime = 9999999999;
}
}, true);