Created
June 3, 2018 13:32
-
-
Save Sak32009/89686b9fe9b07077ae2307c3a9fc097b to your computer and use it in GitHub Desktop.
Bypass Wait
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bypass Wait | |
// @namespace sak32009-bypass-wait | |
// @description Bypass Wait | |
// @author Sak32009 | |
// @version 1.0.0 | |
// @license MIT | |
// @homepageURL https://gist.github.com/Sak32009/89686b9fe9b07077ae2307c3a9fc097b/ | |
// @updateURL https://gist.github.com/Sak32009/89686b9fe9b07077ae2307c3a9fc097b/raw/sak32009-bypass-wait.user.js | |
// @downloadURL https://gist.github.com/Sak32009/89686b9fe9b07077ae2307c3a9fc097b/raw/sak32009-bypass-wait.user.js | |
// @match *://swzz.xyz/link/* | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
((() => { | |
const matchLink = $(".btn-wrapper").attr("href"); | |
window.location.replace(matchLink); | |
})()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment