Skip to content

Instantly share code, notes, and snippets.

@derofim
Created August 27, 2017 15:14
Show Gist options
  • Save derofim/414c8507239a3de1c95f3effaacd7295 to your computer and use it in GitHub Desktop.
Save derofim/414c8507239a3de1c95f3effaacd7295 to your computer and use it in GitHub Desktop.
go to https://www.twitch.tv/your-username/manager/highlights, and enter the following into the developer console (F12)
// delete all twitch video highlights
for(var i = 0; i < document.getElementsByClassName("balloon__link--alert").length; i++) {
var toDelete = document.getElementsByClassName("balloon__link--alert")[i]
if (toDelete) {
toDelete.click();
}
document.getElementsByClassName("button button--alert")[0].click()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment