Skip to content

Instantly share code, notes, and snippets.

@Willy-JL
Last active February 26, 2023 23:40
Show Gist options
  • Save Willy-JL/873a10caa2d888b0ef9b3fad88694d22 to your computer and use it in GitHub Desktop.
Save Willy-JL/873a10caa2d888b0ef9b3fad88694d22 to your computer and use it in GitHub Desktop.
Userscript to redirect tiktok.com to proxitok
// ==UserScript==
// @name Proxitok
// @match https://www.tiktok.com/*
// @grant none
// @version 1.0
// @run-at document-start
// @author WillyJL
// @description Redirect tiktok.com to proxitok
// ==/UserScript==
// proxitok = "proxitok.pabloferreiro.es";
// proxitok = "proxitok.pussthecat.org";
// proxitok = "tok.habedieeh.re";
// proxitok = "proxitok.esmailelbob.xyz";
// proxitok = "proxitok.privacydev.net";
// proxitok = "tok.artemislena.eu";
// proxitok = "tok.adminforge.de";
// proxitok = "proxitok.manasiwibi.com";
proxitok = "tik.hostux.net";
// proxitok = "tt.vern.cc";
// proxitok = "proxitok.mha.fi";
// proxitok = "proxitok.pufe.org";
// proxitok = "proxitok.marcopisco.com";
// proxitok = "cringe.whatever.social";
// proxitok = "proxitok.lunar.icu";
// proxitok = "tok.thekitty.zone";
path = /https:\/\/www\.tiktok\.com(.*)/.exec(location.href)[1];
location.href = `https://${proxitok}${path}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment