I want my extension to change the document.referrer
of certain webpages, but searching for this leads to documentation on how to change the Referrer
in the HTTP request headers.
Is there any way to use an extension to change document.referrer
, preferably before the javascript(s) of a webpage loads?
Currently I refresh pages where I want the document.referrer
altered with window.location.replace(window.location.href)
, but this generates a noticeable flicker, and only can change the referrer to the current page.