Advertisement
Guest User

YouTube Ad-Skip Bookmarklet v3

a guest
Nov 13th, 2023
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * One-liner for use as button URL
  3.  */
  4. javascript:(( ) => { const v = document.querySelector('video'); if (v) { v.currentTime = v.duration; } const b = document.querySelector('button.ytp-ad-skip-button-modern'); if (b) { b.click(); } })();
  5.  
  6. /*
  7.  * Expanded for readability
  8.  */
  9. javascript:(( ) => {
  10.     const v = document.querySelector('video');
  11.     if (v) { v.currentTime = v.duration; }
  12.    
  13.     const b = document.querySelector('button.ytp-ad-skip-button-modern');
  14.     if (b) { b.click(); }
  15. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement