Discussions » Demandes de création de scripts

[FileJoker] Free countdown...

§
Posté le: 08/03/2018

[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.

§
Posté le: 18/03/2018

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);
  };
})();

Poster une réponse

Connectez-vous pour poster une réponse.