Last active
September 1, 2022 09:41
-
-
Save SputNikPlop/5618f3b736a66df26714a59ca366514f to your computer and use it in GitHub Desktop.
A script to redirect to willyu's actual twitch page
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 wyu redirect | |
// @description redirect to the proper channel page | |
// @version 0.1 | |
// @author SputNikPlop | |
// @license GPLv3 | |
// @match *://*.twitch.tv/wyu | |
// @icon https://www.google.com/s2/favicons?domain=twitch.tv | |
// @grant none | |
// @updateURL https://gist.githubusercontent.com/SputNikPlop/5618f3b736a66df26714a59ca366514f/raw/wyu_redirect.js | |
// @downloadURL https://gist.githubusercontent.com/SputNikPlop/5618f3b736a66df26714a59ca366514f/raw/wyu_redirect.js | |
// @run-at document-start | |
// ==/UserScript== | |
window.location.replace("https://www.twitch.tv/willyu"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment