您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects fjorded e-hentai galleries to their sadpanda version.
// ==UserScript== // @name Fjords begone // @namespace Mexiguy // @author Mexiguy // @version 1.0 // @description Redirects fjorded e-hentai galleries to their sadpanda version. // @include http://g.e-hentai.org/* // @grant none // @run-at document-start // ==/UserScript== //Get the page title and URL of the gallery var title = document.title; var url = document.location.toString().toLowerCase(); //Check if it's fjorded if (title.search("Gallery Not Available") != -1) { document.title = "Redirecting..." //Change the URL to the sadpanda one and redirect. url = url.replace("g.e-hentai", "exhentai"); document.location = url; }