Skip to content

Instantly share code, notes, and snippets.

@cpv123
Created February 23, 2020 01:16
Show Gist options
  • Save cpv123/fd49dcaf7464ba779d78c1b478112c76 to your computer and use it in GitHub Desktop.
Save cpv123/fd49dcaf7464ba779d78c1b478112c76 to your computer and use it in GitHub Desktop.
chrome.webRequest.onBeforeRequest.addListener(
request => {
const url = new URL (request.url)
url.searchParams.set('tag', 'MY_REFERRAL_TAG')
return {
redirectUrl: url.toString()
}
},
{ urls: ['https://amazon.co.uk/*] }, ['blocking']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment