您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将 V2EX 的其他域名重定向至“www.v2ex.com”。
当前为
// ==UserScript== // @name V2EX 域名重定向 // @namespace https://gf.qytechs.cn/users/1204387 // @version 0.1.0 // @description 将 V2EX 的其他域名重定向至“www.v2ex.com”。 // @author Gentry Deng // @match http*://v2ex.com/* // @match http*://cn.v2ex.com/* // @match http*://de.v2ex.com/* // @match http*://fast.v2ex.com/* // @match http*://global.v2ex.com/* // @match http*://hk.v2ex.com/* // @match http*://jp.v2ex.com/* // @match http*://origin.v2ex.com/* // @match http*://s.v2ex.com/* // @match http*://staging.v2ex.com/* // @match http*://us.v2ex.com/* // @icon https://www.v2ex.com/static/icon-192.png // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function () { 'use strict'; if (location.hostname != "www.v2ex.com") { window.location.hostname = "www.v2ex.com"; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址