NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Redirect FSKR
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://fuskator.com/thumbs/*
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
window.location.href = window.location.href.replace('/thumbs/', '/full/');
})();