Skip to content

Instantly share code, notes, and snippets.

@ShingoFukuyama
Created November 15, 2015 04:21
Show Gist options
  • Save ShingoFukuyama/c316c4af3d2b6256e82d to your computer and use it in GitHub Desktop.
Save ShingoFukuyama/c316c4af3d2b6256e82d to your computer and use it in GitHub Desktop.
Mobile YouTube - Auto Load More Bookmarklet (As of Nov, 15, 2015)
javascript:(function()%7Bwindow.addEventListener('scroll',%20function()%7Bvar%20wH%20=%20window.innerHeight%20+%2080.0;var%20mstA%20=%20document.querySelectorAll('._mst');if%20(mstA.length%20==%201)%20%7Bvar%20mst%20=%20mstA[0];if%20(mst.getBoundingClientRect().top%20<%20wH)%20%7Bmst.click();%7D%7Dvar%20morA%20=%20document.querySelectorAll('._mpc._mwe');if%20(morA.length%20==%201)%20%7Bvar%20mor%20=%20morA[0];if%20(mor.getBoundingClientRect().top%20<%20wH)%20%7Bmor.click();%7D%7D%7D);%7D)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment