Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Created July 23, 2020 18:23
Show Gist options
  • Save sillygwailo/89106894b0a7bbd14d38c3f10083059b to your computer and use it in GitHub Desktop.
Save sillygwailo/89106894b0a7bbd14d38c3f10083059b to your computer and use it in GitHub Desktop.
Bookmarklet to switch from an Amazon.com URL to the Amazon.ca equivalent
url = new URL(window.location.href);
if (url.hostname = 'amazon.com') {
amazon_ca = url.href.replace('amazon.com', 'amazon.ca');
location.href = amazon_ca;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment