Skip to content

Instantly share code, notes, and snippets.

@Sak32009
Created June 3, 2018 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sak32009/89686b9fe9b07077ae2307c3a9fc097b to your computer and use it in GitHub Desktop.
Save Sak32009/89686b9fe9b07077ae2307c3a9fc097b to your computer and use it in GitHub Desktop.
Bypass Wait
// ==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