Skip to content

Instantly share code, notes, and snippets.

@shiftgeist
Created December 4, 2024 14:51
Show Gist options
  • Save shiftgeist/8ea2182a9b8ab23c441aadc0fdde46d5 to your computer and use it in GitHub Desktop.
Save shiftgeist/8ea2182a9b8ab23c441aadc0fdde46d5 to your computer and use it in GitHub Desktop.
Some websites are a time waste.
// ==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