Remove youtube pause more videos

Remove youtube pause more videos.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Remove youtube pause more videos
// @author	i.alba
// @description Remove youtube pause more videos.
// @match  https://www.youtube-nocookie.com/*
// @version 0.0.1
// @license MIT
// @namespace https://greatest.deepsurf.us/users/429053
// ==/UserScript==

function sleep(ms) {
  return new Promise((resolve) => {
    const timer = setTimeout(() => {
      clearTimeout(timer)
      resolve()
    }, ms)
  })
}

async function checkPauseEl() {
  let count = 20
  while (count > 0) {
    count--
    const el = document.querySelector(".ytp-pause-overlay-container")
    console.log("Check pause el")
    if (el) {
      count = 0
      console.log("Remove pause el")
      el.parentElement.removeChild(el)
    }
    await sleep(1000)
  }
}

checkPauseEl()