Advertisement
kub12

PanDawnload

Aug 15th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name PanDownload网页版 - 百度网盘不限速直链下载 Jaeger
  3. // @namespace https://github.com/jae-jae
  4. // @version 1.3
  5. // @description 百度网盘分享链接自动跳转到 PanDownload 网页版去下载
  6. // @author Jaeger
  7. // @match https://pan.baidu.com/s/*
  8. // @match https://pan.baidu.com/share/*
  9. // @match https://yun.baidu.com/s/*
  10. // @grant GM_openInTab
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. let link = location.href;
  17. link = link.replace('baidu.com','baiduwp.com');
  18. GM_openInTab(link, { active: true });
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement