pan.download

百度一键大文件下载,更新于2018.01.26

  1. // ==UserScript==
  2. // @name pan.download
  3. // @namespace Violentmonkey Scripts
  4. // @match *://pan.baidu.com/*
  5. // @grant none
  6. // @run-at document-start
  7. // @description 百度一键大文件下载,更新于2018.01.26
  8. // @version 0.0.1.20180126075854
  9. // ==/UserScript==
  10. var ua = 'Mozilla/5.0 (Linux; Android 8.0.0; G8142 Build/47.1.A.8.49) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3117.2 Mobile Safari/537.36'
  11.  
  12. Object.defineProperty(Object.getPrototypeOf(navigator), 'platform', {
  13. value: 'Linux armv8I', // 安卓系统
  14. enumerable: true,
  15. writable: true,
  16. configurable: true,
  17. })
  18. Object.defineProperty(Object.getPrototypeOf(navigator), 'userAgent', {
  19. value: ua, // chrome 浏览器
  20. enumerable: true,
  21. writable: true,
  22. configurable: true,
  23. })