虎扑社区移动版网页自动跳转PC版

虎扑社区移动版网页自动跳转PC版。比如https://m.hupu.com/bbs/53224454.html 自动跳转到 https://bbs.hupu.com/53224454.html

  1. // ==UserScript==
  2. // @name 虎扑社区移动版网页自动跳转PC版
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description 虎扑社区移动版网页自动跳转PC版。比如https://m.hupu.com/bbs/53224454.html 自动跳转到 https://bbs.hupu.com/53224454.html
  6. // @author huaji
  7. // @match https://m.hupu.com/bbs/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var Url = window.location.href;
  16. var xxx = Url.match(/\/bbs\/(\d*)\.(html|htm|shtm|shtml)/);
  17. var id= xxx[1];
  18. const href = `https://bbs.hupu.com/${id}.html`
  19.  
  20. window.location.replace(href);
  21. // Your code here...
  22. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址