Created
March 6, 2022 11:46
-
-
Save sweoggy/d9480a41f9fd77c790a8c54bda5db943 to your computer and use it in GitHub Desktop.
Redirect new Prisjakt to classic.prisjakt.nu
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 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