Created
April 27, 2023 15:56
-
-
Save bitten2up/3f68826ae0bb1ee1c15342a91f92f0d2 to your computer and use it in GitHub Desktop.
12ft.io redirect userscript
This file contains 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 12ft.io redirect | |
// @namespace https://bitten2up.dev/ | |
// @version 0.1 | |
// @description redirect to 12ft.io | |
// @author bitten2up | |
// @match *://*/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.location.href = "https://12ft.io/" + window.location.href; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment