NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Redirect to eRep from Rick Astley // @namespace https://openuserjs.org/users/brcha // @version 0.1 // @description Counter the admins redirect with a new redirect // @author brcha // @license MIT // @copyright 2021, brcha (https://openuserjs.org/users/brcha) // @match https://www.youtube.com/watch?v=dQw4w9WgXcQ // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... location.href = "https://www.erepublik.com/"; })();