Greasy Fork is available in English.
手机虎扑hupu内容自动跳转网页版
当前为
// ==UserScript==
// @name 手机虎扑内容自动跳转网页版
// @version 0.3
// @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;
var pattern = /https:\/\/m\.hupu\.com\/(bbs-share|bbs)\/(\d+\.html)/;
var match = url.match(pattern);
if (match) {
var newUrl = `https://bbs.hupu.com/${match[2]}`;
location.href = newUrl;
}
})();