This file contains 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
var WList = document.querySelector("#contents").querySelector("#contents").querySelector("#contents").children | |
console.log(WList.length) | |
function sleep(ms) {return new Promise(resolve => setTimeout(resolve, ms));} | |
console.log("Starting...") | |
removed = []; | |
async function clean() { | |
for (let i = 0; i < WList.length; i++) { | |
const vid = WList[i]; | |
var prog = vid.children[1].querySelector("#container #thumbnail #thumbnail #overlays #progress"); | |
if (prog != null) { |