// ==UserScript== // @name Streamcheck bypass // @version 0.1 // @description Automatically bypass Streamcheck links // @author d30f2n // @match https://streamcheck.link/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @namespace d30f2n // @downloadURL none // ==/UserScript== $(document).ready(function() { redirect.disabled = false; let button = document.querySelector('#redirect'); button.click(); });