Redirects from opendota.com to dotabuff.com
// ==UserScript==
// @name Stratz to Dotabuff Redirect
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Redirects from opendota.com to dotabuff.com
// @author You
// @match *.stratz.com/*
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const newUrl = window.location.href.replace('stratz.com', 'dotabuff.com');
window.location.replace(newUrl);
})();