Reddit to Libreddit

Redirects Reddit links to Libreddit

// ==UserScript==
// @name         Reddit to Libreddit
// @namespace    -
// @version      0.1
// @description  Redirects Reddit links to Libreddit
// @author       punpun
// @include      *reddit.com/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==

const libreddit = 'libredd.it'; // Or change to any alternative you prefer

window.location.replace('https://' + libreddit + window.location.pathname + window.location.search);