Created
July 23, 2020 18:23
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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