Skip to content

Instantly share code, notes, and snippets.

@jdelamater99
Last active April 4, 2024 08:25
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save jdelamater99/92ef1373a82d17556fd2 to your computer and use it in GitHub Desktop.
Save jdelamater99/92ef1373a82d17556fd2 to your computer and use it in GitHub Desktop.
AmazonSmile Redirect (Greasemonkey Script)
// ==UserScript==
// @name AmazonSmile Redirect
// @namespace http://jdel.us
// @description Redirect Amazon to AmazonSmile
// @include http://*.amazon.*/*
// @include https://*.amazon.*/*
// @version 0.6
// @grant none
// @run-at document-start
// ==/UserScript==
var url = window.location.host;
if (url.match("smile.amazon") === null) {
url = window.location.href;
if (url.match("//www.amazon") !== null){
url = url.replace("//www.amazon", "//smile.amazon");
} else if (url.match("//amazon.") !== null){
url = url.replace("//amazon.", "//smile.amazon.");
} else {
return;
}
console.log(url);
window.location.replace(url);
}
@jdelamater99
Copy link
Author

Thanks for the recommendation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment