慢慢买-手机端转电脑端

添加按钮,支持手机端转电脑端

  1. // ==UserScript==
  2. // @name 慢慢买-手机端转电脑端
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 添加按钮,支持手机端转电脑端
  6. // @author xiantong.zou
  7. // @match https://m.manmanbuy.com/d.aspx?id=*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12.  
  13. //// @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
  14. (function () {
  15. 'use strict';
  16. console.log("manmanbuy to pc run!");
  17.  
  18. // 域名跳转
  19. //https://m.manmanbuy.com/d.aspx?id=4199210&
  20. var url = document.location.href;
  21. var flag = "d.aspx?id="
  22. var ia = url.indexOf(flag)
  23. var ib = url.indexOf("&" ,ia)
  24. var pId = url.substring(ia + flag.length ,ib)
  25.  
  26. var newUrl = "http://cu.manmanbuy.com/discuxiao_" + pId + ".aspx"
  27. console.log("newUrl:" + newUrl);
  28.  
  29. document.location.href = newUrl;
  30. //if (document.location.href.indexOf("nga.178.com") > -1 || document.location.href.indexOf("ngacn.cc") > -1 || document.location.href.indexOf("ngabbs.com") > -1 || document.location.href.indexOf("g.nga.cn") > -1) {
  31. // document.location.href = document.location.href.replace('nga.178.com', 'bbs.nga.cn').replace('ngabbs.com', 'bbs.nga.cn').replace('g.nga', 'bbs.nga').replace('ngacn.cc', 'nga.cn');
  32. //}
  33.  
  34. })();

QingJ © 2025

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