手机虎扑hupu内容自动跳转网页版
// ==UserScript==
// @name 手机虎扑内容自动跳转网页版
// @version 0.4
// @description 手机虎扑hupu内容自动跳转网页版
// @author GeBron
// @match *://m.hupu.com/*
// @icon https://w1.hoopchina.com.cn/images/pc/old/favicon.ico
// @grant none
// @namespace http://tampermonkey.net/
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var url = location.href;
// 匹配 m.hupu.com 的链接,并捕获帖子 ID(去掉 -数字 部分)
var pattern = /https:\/\/m\.hupu\.com\/(bbs-share|bbs)\/(\d+)(?:-\d+)?(\.html)/;
var match = url.match(pattern);
if (match) {
// 组合成电脑版链接(去掉 -数字 部分,跳转到第一页)
var newUrl = `https://bbs.hupu.com/${match[2]}${match[3]}`;
location.href = newUrl;
}
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址