Skip to content

Instantly share code, notes, and snippets.

@tuanchauict
Created June 4, 2025 23:25
Show Gist options
  • Save tuanchauict/e566d32e7598ab1b748e24b601a63b02 to your computer and use it in GitHub Desktop.
Save tuanchauict/e566d32e7598ab1b748e24b601a63b02 to your computer and use it in GitHub Desktop.
Redirect threads to following
// ==UserScript==
// @name Redirect threads
// @namespace http://tampermonkey.net/
// @version 2025-05-22
// @description try to take over the world!
// @author You
// @match https://www.threads.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=threads.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
if (document.location.pathname === '/') {
document.location.href = "/following";
}
}, 10000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment