您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在访问主站时自动跳转到镜像网站:'moegirl.uk'
// ==UserScript== // @name 萌娘百科跳转镜像网站 // @version 1.0 // @description 在访问主站时自动跳转到镜像网站:'moegirl.uk' // @match https://mzh.moegirl.org.cn/* // @match https://zh.moegirl.org.cn/* // @match https://moegirl.uk/* // @license MIT // @grant none // @run-at document-start // @namespace http://tampermonkey.net/ // ==/UserScript== (function() { 'use strict'; const targetHost = 'https://moegirl.uk'; const pathRegex = /moegirl\.org\.cn(.*)$/; const match = pathRegex.exec(window.location.href); const newPath = match ? match[1] : ''; window.location.replace(`${targetHost}${newPath}`); })();