Advertisement
alien_fx_fiend

Browser-Console Code for YouTube Ad Skip

Jan 4th, 2020
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. const click = (clazz) => {
  2. const buttons = document.getElementsByClassName(clazz);
  3. for (const button of buttons) {
  4. button.click();
  5. console.log("No More Ad");
  6. }
  7. }
  8.  
  9. setInterval(() => {
  10. click("ytp-ad-skip-button-text");
  11. click("ytp-ad-overlay-close-button");
  12. }, 300);
  13. console.log("No More Ad - Init");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement