// ==UserScript== // @name RtoV // @namespace voat.co/user/RayLomas/rtov // @description Redirects reddit.com/r links to voat.co/v // @include https://www.reddit.com/r/* // @include https://reddit.com/r/* // @version 1 // @grant none // ==/UserScript== window.location.href= window.location.href.replace( /\:\/\/.*\.reddit\.com\/r/, "://voat.co/v" );