Discussions » Creation Requests

[FileJoker] Free countdown...

§
Posted: 2018-03-08

[FileJoker] Free countdown...

Lately filejoker seems ot have implemented a really annoying feature for Free downloads. The existing countdown timer is fine (I guess that's fair) but now they've added a countdown focus script that will pause the countdown timer until you leave that window/tab focused for the full n-seconds.

I would like to see a script either bypass the countdown or at least disable the focused window check.

Please and thanks.

§
Posted: 2018-03-18

Use below code to disable the tab unfocusing check. Configure it to be executed at document-start.

(function(wael) {
  wael = window.addEventListener;
  window.addEventListener = function(type) {
    if (type === "blur") return;
    return wael.apply(this.arguments);
  };
})();

Post reply

Sign in to post a reply.