NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Furaffinity Auto Full View // @namespace zanny // @description Redirects FA view pages to full pages // @version 1 // @license GPL-3.0+ // @include http://www.furaffinity.net/view/* // @include https://www.furaffinity.net/view/* // @icon http://www.furaffinity.net/favicon.ico // @noframes // ==/UserScript== let url = window.location.href.replace("view", "full"); window.location.replace(url);