Greasy Fork is available in English.
Automatically bypass Streamcheck links
// ==UserScript==
// @name Streamcheck bypass
// @version 0.2
// @description Automatically bypass Streamcheck links
// @match https://streamcheck.link/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license MIT
// @namespace d30f2n
// ==/UserScript==
$(document).ready(function() {
redirect.disabled = false;
document.querySelector('#redirect').click();
});