DVTV timeFreeLimit bypass

Code that bypasses the time limit. Paste it into the Developer console.
 avatar
unknown
javascript
3 years ago
354 B
51
Indexable
// vimeo iframe
const iframe = document.querySelector("iframe[src*='https://player.vimeo.com/']");

// get original iframe parent node
const parent = iframe.parentNode;

// remove iframe
iframe.parentNode.removeChild(iframe);

// wait few miliseconds
setTimeout(function () {

  // add iframe to parent
  parent.appendChild(iframe);
}, 50);
Editor is loading...