Greasy Fork is available in English.

百度云yun跳转

百度云从pan域名跳到yun域名(一般人没用,不要装)

  1. // ==UserScript==
  2. // @name 百度云yun跳转
  3. // @namespace pan2yun
  4. // @description 百度云从pan域名跳到yun域名(一般人没用,不要装)
  5. // @include http://pan.baidu.com/*
  6. // @include https://pan.baidu.com/*
  7. // @exclude http://pan.baidu.com/share/*
  8. // @exclude https://pan.baidu.com/share/*
  9. // @version 14.07.11.2
  10. // @author 17yard
  11. // @grant none
  12. // @icon http://ww3.sinaimg.cn/large/5cf8ff8dgw1ehu56yclmpj20280283yb.jpg
  13. // @namespace https://greasyfork.org/scripts/
  14.  
  15. // ==/UserScript==
  16.  
  17. //只为防止本人的chrome抽风 pan无法点击的未知毛病 一般用户不需要此脚本
  18.  
  19. location.replace(
  20. location.href.replace('://pan.baidu.com/', '://yun.baidu.com/')
  21. )