Skip to content

Instantly share code, notes, and snippets.

View frankiethekneeman's full-sized avatar

Francis Sirizzotti frankiethekneeman

  • Squarespace
  • New York, NY
View GitHub Profile

Keybase proof

I hereby claim:

  • I am frankiethekneeman on github.
  • I am francisvanw (https://keybase.io/francisvanw) on keybase.
  • I have a public key ASA8mNfBjIVuk9-Z9rcBoX-BduwuEZKkeDdciQWT2Ot_hgo

To claim this, I am signing this object:

@frankiethekneeman
frankiethekneeman / addChannelToWatchLater.js
Last active February 14, 2017 15:41
Add an entire channel to your "watch later" playlist.
var nextTimeout = false;
var stopAdding = function() {
clearTimeout(nextTimeout);
}
var addToWatchLater = function (delay, callback) {
delay = delay || 1000;
var buttons = document.querySelectorAll('button.addto-watch-later-button');
if (buttons && buttons.length) {