Skip to content

Instantly share code, notes, and snippets.

@Cicmicc
Cicmicc / trakt-remove-all-from-collection.js
Created January 26, 2023 11:00 — forked from alok-mishra/trakt-remove-all-from-collection.js
Remove all items from Trakt collection
// Removes all items from a page of the Trakt collection
// Run script from console of user's collection page
// Must be run on each page
let goForward = true;
function wipePage() {
$(".grid-item").each( function( index) {
actionWatch($(this), "collect", true)
});