Skip to content

Instantly share code, notes, and snippets.

@kism
Last active February 24, 2022 08:21
Show Gist options
  • Save kism/ab11433e39d25478539c1d21d27cacd1 to your computer and use it in GitHub Desktop.
Save kism/ab11433e39d25478539c1d21d27cacd1 to your computer and use it in GitHub Desktop.
Gumtree Australia Redirect
// ==UserScript==
// @name GumtreeAURedirect
// @match *://*.gumtree.com/*
// @grant none
// @version 1.0
// @author KiSM
// @description 2/2/2022, 11:44:23 AM
// ==/UserScript==
if (location.hostname.startsWith('gumtree.com')) {
window.stop();
location.hostname = 'gumtree.com.au';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment