Greasy Fork is available in English.
手机版虎扑,自动跳转到对应的网页版
// ==UserScript==
// @name 虎扑自动跳转
// @version 0.1
// @description 手机版虎扑,自动跳转到对应的网页版
// @author 中出zc
// @match *://m.hupu.com/bbs/*
// @icon https://w1.hoopchina.com.cn/images/pc/old/favicon.ico
// @grant none
// @namespace http://greasyfork.icu/users/220160
// ==/UserScript==
(function() {
'use strict';
var a = location.href;
a = a.replace("https://m.hupu.com/bbs/", "https://bbs.hupu.com/");
location.href = a;
})();