tghw / Fix MachSupport

// ==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/');
    });
})();