Greasy Fork is available in English.

Celeste wiki redirect

Redirects from Fandom celeste wiki to celeste.ink wiki

// ==UserScript==
// @name        Celeste wiki redirect
// @namespace   Violentmonkey Scripts
// @match       https://celestegame.fandom.com/wiki/*
// @match       https://celeste.ink/wiki/*
// @grant       none
// @version     1.0
// @author      Brevven
// @license MIT
// @description Redirects from Fandom celeste wiki to celeste.ink wiki
// ==/UserScript==

(function(){
  if (window.location.hostname.includes('fandom')) {
    window.location.href = 'https://celeste.ink'+ window.location.pathname
  } else {
    if (document.body.innerHTML.includes('There is currently no text in this page.')) {
      window.location.href = 'https://celeste.ink/wiki/Special:Search?search=' + window.location.pathname.replace('/wiki/', '').replaceAll('_', ' ')
    }
  }
})();