Skip to content

Instantly share code, notes, and snippets.

View sweoggy's full-sized avatar
:octocat:

Oscar Reimer sweoggy

:octocat:
View GitHub Profile
@sweoggy
sweoggy / prisjakt-redirect.user.js
Created March 6, 2022 11:46
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;
})();