Skip to content

Instantly share code, notes, and snippets.

@sweoggy
Created March 6, 2022 11:46
Show Gist options
  • Save sweoggy/d9480a41f9fd77c790a8c54bda5db943 to your computer and use it in GitHub Desktop.
Save sweoggy/d9480a41f9fd77c790a8c54bda5db943 to your computer and use it in GitHub Desktop.
Redirect new Prisjakt to classic.prisjakt.nu
// ==UserScript==
// @name Redirect new Prisjakt to classic.prisjakt.nu
// @match *://www.prisjakt.nu/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
window.location.href = 'https://classic.prisjakt.nu' + location.pathname;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment