Created
August 27, 2017 15:14
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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