Created
August 10, 2024 10:16
-
-
Save dest4590/454f41b13a5e2a1ad27f7265d78b306b to your computer and use it in GitHub Desktop.
ify.ac bypasser
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 ify.ac bypasser | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-08-03 | |
// @description bypasser | |
// @author You | |
// @match https://ify.ac/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=ify.ac | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.addEventListener('load', function() { | |
location.href = document.querySelector("#main > a:nth-child(6)").href | |
}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment