Skip to content

Instantly share code, notes, and snippets.

@dest4590
Created August 10, 2024 10:16
Show Gist options
  • Save dest4590/454f41b13a5e2a1ad27f7265d78b306b to your computer and use it in GitHub Desktop.
Save dest4590/454f41b13a5e2a1ad27f7265d78b306b to your computer and use it in GitHub Desktop.
ify.ac bypasser
// ==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