NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ExHentai Image Redirect to E-Hentai // @name:zh-TW E網裏站圖片重新引導至表站 // @name:zh-CN E网里站图片重新引导至表站 // @namespace https://github.com/awdrrawd // @version 1.0 // @description Redirects image clicks from ExHentai to E-Hentai // @match https://exhentai.org/g/* // @icon https://e-hentai.org/favicon.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 遍历页面上的所有图片链接 document.querySelectorAll('a').forEach(link => { // 检查链接是否指向包含 'https://exhentai.org/s/' 的路径 if (link.href.includes('https://exhentai.org/s/')) { // 将链接更改为对应的 E-Hentai 链接 link.href = link.href.replace('https://exhentai.org/s/', 'https://e-hentai.org/s/'); } }); })();