// ==UserScript== // @name 手机虎扑内容自动跳转网页版+清空多余参数 // @version 0.1 // @description 手机虎扑,自动跳转网页版 // @author 233yuzi // @match *://m.hupu.com/bbs-share/* // @icon https://w1.hoopchina.com.cn/images/pc/old/favicon.ico // @grant none // @license MIT // @namespace https://greasyfork.org/users/759046 // @downloadURL none // ==/UserScript== (function() { 'use strict'; var a=location.href; a=a.replace("m.","bbs."); a=a.replace("/bbs-share",""); a=a.split('?')[0]; location.href=a; })();