// ==UserScript== // @name fandom to breezewiki // @match *://*.fandom.com/* // @grant none // @run-at document-start // ==/UserScript== BREEZEWIKI_INSTANCE = "breezewiki.pussthecat.org" url = location.href url = url.replace(/\bwww\.\b/, "") host = location.hostname path = location.pathname if (url.includes("/wiki/")) { // this is bad location.href = "https://" + BREEZEWIKI_INSTANCE + "/" + host.split(".")[0] + path } else { url = url.replace("fandom.com", BREEZEWIKI_ISNTANCE) location.href = url }