// ==UserScript== // @name PTH non-ascii search workaround // @version 0.2 // @description Redirect on searches that fail due to 16-bit non-ascii characters // @author Chameleon // @include http*://redacted.ch/torrents.php?searchstr=* // @grant none // @namespace https://greasyfork.org/users/87476 // @downloadURL https://update.greasyfork.icu/scripts/25752/PTH%20non-ascii%20search%20workaround.user.js // @updateURL https://update.greasyfork.icu/scripts/25752/PTH%20non-ascii%20search%20workaround.meta.js // ==/UserScript== (function() { 'use strict'; if(document.body.innerHTML.indexOf('Your search did not match anything.') != -1) { var match=window.location.search.match(/%..%../g); if(match) { var newSearch=window.location.search; for(var i=0; i