Created
December 4, 2024 14:51
-
-
Save shiftgeist/8ea2182a9b8ab23c441aadc0fdde46d5 to your computer and use it in GitHub Desktop.
Some websites are a time waste.
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 Random redirector | |
// @namespace Violentmonkey Scripts | |
// @match *://**/* | |
// @grant none | |
// @version 1.0 | |
// @author shiftgeist | |
// @description 12/4/2024, 3:46:35 PM | |
// @run-at document-start | |
// ==/UserScript== | |
const redirectFrom = ['youtube.com']; | |
const redirectTo = ['https://soundcloud.com/discover', 'https://open.spotify.com/']; | |
for (page of redirectFrom) { | |
if (location.href.includes(page)) { | |
location.href = redirectTo[Math.floor(Math.random() * redirectTo.length)]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment