Skip to content

Instantly share code, notes, and snippets.

@Azzurite
Created January 26, 2017 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Azzurite/931454d2610ee1b317f0b0ed0fcadd22 to your computer and use it in GitHub Desktop.
Save Azzurite/931454d2610ee1b317f0b0ed0fcadd22 to your computer and use it in GitHub Desktop.
Always use smile.amazon.de instead of www.amazon.de
// ==UserScript==
// @name amazon smile
// @namespace tt
// @include https://*.amazon.de*
// @version 1
// @grant none
// ==/UserScript==
if (location.hostname !== 'smile.amazon.de') {
location.hostname = 'smile.amazon.de';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment