Created
June 4, 2025 23:25
-
-
Save tuanchauict/e566d32e7598ab1b748e24b601a63b02 to your computer and use it in GitHub Desktop.
Redirect threads to following
This file contains hidden or 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 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