Greasy Fork is available in English.

Обсуждения » Хотелки

[FileJoker] Free countdown...

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

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

Ответить

Войдите, чтобы ответить.