NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @namespace http://tampermonkey.net/
// @name Kiranico spanish fix MH3U
// @description Fixes "item not found" page when searching an item in spanish in mh3u section
// @version 0.1
// @copyright 2018, Faaa97 (https://github.com/Faaa97)
// @license GPL-3.0
// @author Faaa97
// @match http://kiranico.com/es/mh3u/art%C3%ADculo/*
// @grant none
// ==/UserScript==
(function () {
window.location.href = window.location.href.replace("art%C3%ADculo", "%C3%ADtem");
})();