// ==UserScript== // @name 虎扑各项细节优化 // @version 0.2 // @description 手机虎扑自动跳转网页版+清空多余参数+操作细节优化 // @author 233yuzi // @match *://bbs.hupu.com/* // @match *://m.hupu.com/bbs-share/* // @icon https://w1.hoopchina.com.cn/images/pc/old/favicon.ico // @grant GM_openInTab // @license MIT // @namespace https://greasyfork.org/users/759046 // @downloadURL none // ==/UserScript== (function () { 'use strict'; console.log('启动成功') //移动端自动跳转PC function mobileToPc() { let reg = RegExp(/bbs-share/) let a = location.href if (a.match(reg)) { a = a.replace("m.", "bbs.") a = a.replace("/bbs-share", "") a = a.split('?')[0] location.href = a } } //点击链接新窗口打开 document.addEventListener('click', (e) => { let target = e.target if (target.className === 'p-title') { e.preventDefault() window.open(target.href) } }) })();