Sleazy Fork is available in English.

Rewrite exhentai to e-hentai

重定向E站里站链接到表站

// ==UserScript==
// @name         Rewrite exhentai to e-hentai
// @namespace    http://tampermonkey.net/
// @version      1
// @description  重定向E站里站链接到表站
// @match        *://exhentai.org/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    var newUrl = window.location.href.replace('exhentai.org', 'e-hentai.org');
    window.location.replace(newUrl);
})();