NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto reload image after error, Referral Denied // @description Avoids error: Referral Denied You don't have permission to access xyz on this server // @namespace cuzi // @oujs:author cuzi // @version 1 // @license GPL-3.0 // @include /^http.+\.jpg$/ // @include /^http.+\.jpeg$/ // @include /^http.+\.png$/ // @include /^http.+\.gif$/ // @grant none // ==/UserScript== (function() { "use strict"; if(!document.querySelector("img")) { document.location.href += ""; } })();