Greasy Fork is available in English.

igg-games/bluemediafiles auto continue after wait

waits for cooldown and clicks continue

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
作者
Alistair1231
1日のインストール数
2
累計インストール数
687
評価
2 0 0
バージョン
0.7.0
作成日
2021/04/30
更新日
2023/12/21
ライセンス
MIT
対象サイト
すべてのサイト

Waits for cooldown and then clicks the download button. Very basic.
As of v0.7.0 it directly redirects to the target site on load, after igg changed something that broke the old script. This behavior may or may not stay, depending on what igg cooks up next.

You probably need to disable your adblock on bluemediafile, the script won't trigger the popups.

I'm accepting pull requests: https://github.com/Alistair1231/my-userscripts/

As a tip, I use it together with Open selected links by c-yan and Sidebery by mbnuqw, with that I can easily open and then copy all links to add them to JDownloader2!

allTheLinks soEasy

If it ever breaks down and I don't notice it in time, check the match entries at the beginning of the script. They keep changing domains and it's a one line fix. Just make sure one of the lines matches the url. Example:
// @match http*://bluemediafile.site/url-generator.php?url=*

I got sick of having to change this. I wanted to simply use @include http*://bluemediafile.tld/url-generator.php?url=*. But the glorious Manifest v3 from google, which is ruining Adblock also doesn't allow for @include. This would therefore break compatibility with Chrome, which most people use.
@match is supposed to be safer than @include, but while it allows for * to match google.com, it doesn't allow google.* to match google.com. So matching ALL WEBSITES is the only option. In the script I validate that bluemediafile is in the URL and I also mathc including url-generator.php?url=. So it should only ever run on the pages where it is supposed to. If you know a way around this please let me know.