阻止百度网盘wap版自动跳转

阻止百度网盘wap版自动跳转到PC版网页(仅限Firefox浏览器有效)

  1. // ==UserScript==
  2. // @name 阻止百度网盘wap版自动跳转
  3. // @namespace https://gf.qytechs.cn/users/4514
  4. // @author 喵拉布丁
  5. // @homepage https://gf.qytechs.cn/scripts/13434
  6. // @description 阻止百度网盘wap版自动跳转到PC版网页(仅限Firefox浏览器有效)
  7. // @include http://pan.baidu.com/wap/*
  8. // @include https://pan.baidu.com/wap/*
  9. // @include http://yun.baidu.com/wap/*
  10. // @include https://yun.baidu.com/wap/*
  11. // @version 1.3
  12. // @grant none
  13. // @run-at document-start
  14. // @license MIT
  15. // ==/UserScript==
  16. document.addEventListener('beforescriptexecute', function (e) {
  17. if (e.target.id == 'platform') {
  18. e.preventDefault();
  19. }
  20. });

QingJ © 2025

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