Skip to content

Instantly share code, notes, and snippets.

@bitten2up
Created April 27, 2023 15:56
Show Gist options
  • Save bitten2up/3f68826ae0bb1ee1c15342a91f92f0d2 to your computer and use it in GitHub Desktop.
Save bitten2up/3f68826ae0bb1ee1c15342a91f92f0d2 to your computer and use it in GitHub Desktop.
12ft.io redirect userscript
// ==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