A bookmarklet to prompt you for a new document.referrer
javascript:(function(){ | |
var newReferrer = prompt('Set the referrer:'); | |
Object.defineProperty(document, "referrer", {configurable: true, get : function(){ return newReferrer; }}) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment