Skip to content

Instantly share code, notes, and snippets.

View jzisser9's full-sized avatar

Jonathan Zisser jzisser9

  • Manhattan Area, New York, USA
  • 17:37 (UTC -05:00)
View GitHub Profile
@ramsey
ramsey / remove-followers.js
Last active October 10, 2024 21:31 — forked from JamieMason/unfollow.js.md
Remove everyone following you on twitter.com
// Remove everyone following you on twitter.com
// https://gist.github.com/ramsey/bdeefda66d6e2294d3466edcea30187b
//
// 1. Go to https://twitter.com/YOUR_USER_NAME/followers
// 2. Open the Developer Console. (COMMAND+ALT+I on Mac)
// 3. Paste this into the Developer Console and run it
//
// If you start seeing error messages in the console with the code
// "429," this means Twitter is rate-limiting you. Stop the script
// (i.e., reload or close the browser tab), and try again later.
@astamicu
astamicu / Remove videos from Youtube Watch Later playlist.md
Last active November 13, 2024 00:10
Script to remove all videos from Youtube Watch Later playlist

UPDATED 22.11.2022

It's been two years since the last update, so here's the updated working script as per the comments below.

Thanks to BryanHaley for this.

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

 video.querySelector('#primary button[aria-label="Action menu"]').click();