// ==UserScript== // @name Redirect Fandom to BreezeWiki // @namespace Violentmonkey Scripts // @match https://*.fandom.com/wiki/* // @grant none // @version 1.3 // @author Cadence // @downloadURL https://docs.breezewiki.com/files/redirector.user.js // @description 01/09/2022, 12:00:00 pm // ==/UserScript== const instance = "breezewiki.com" const match = location.host.match(/^([a-z-]*)\.fandom\.com$/) if (match && !["", "www"].includes(match[1])) { const dest = new URL(location) dest.host = instance dest.pathname = `/${match[1]}${dest.pathname}` const f = document.createElement("div") f.innerHTML = `
` document.body.appendChild(f) const style = document.createElement("style") style.textContent = ` .get-fucked-fandom { position: fixed; top: 16px; right: 16px; left: 16px; height: 200px; background: antiquewhite; z-index: 1001; display: flex; align-items: center; justify-content: center; } .get-fucked-fandom .go { padding: 20px 120px; font-size: 40px; } .get-fucked-fandom .no { position: absolute; font-size: 28px; top: 8px; right: 8px; padding: 8px; line-height: 1; } ` document.head.appendChild(style) }