Skip to content

Instantly share code, notes, and snippets.

@orderthruchaos
Created April 7, 2015 15:03
Show Gist options
  • Save orderthruchaos/e4c3b8a813713abfa1b0 to your computer and use it in GitHub Desktop.
Save orderthruchaos/e4c3b8a813713abfa1b0 to your computer and use it in GitHub Desktop.
Greasemonkey User Script: ensure that you are on smile.amazon.com.
// ==UserScript==
// @name smile_amazon_com
// @namespace http://orderthruchaos.bitbucket.org/
// @copyright 2015+, Brett DiFrischia
// @license
// @description Always remember to smile!
// @grant GM_log
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @include http://www.amazon.com/*
// @include https://www.amazon.com/*
// @include http://amazon.com/*
// @include https://amazon.com/*
// ==/UserScript==
this.$J = this.jQuery = jQuery.noConflict(true);
(
function () {
var on_load = function () {
var go2 = location.href.replace(
/(https?:\/\/)(www\.)?amazon\.com/i,
'$1smile.amazon.com'
);
location.href = go2;
};
$J(on_load);
}
)();
// vim: sts=2 sw=2 ts=8 et
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment