NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Fix MachSupport
// @namespace https://tghw.com/
// @version 0.2
// @description Rewrite URLs so MachSupport forums work.
// @author tghw
// @match https://www.google.com/search*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.r > a').forEach(function(e) {
e.href = e.href.replace(/^https:\/\/www.machsupport.com\\forum\//i, 'http://forum.machsupport.com/forum/');
});
})();