夸克网盘直链下载

解除夸克网盘下载限制,直接在浏览器中下载

  1. // ==UserScript==
  2. // @name 夸克网盘直链下载
  3. // @version 1.1
  4. // @namespace https://pan.quark.cn/list
  5. // @description 解除夸克网盘下载限制,直接在浏览器中下载
  6. // @author Lingo Wang
  7. // @license MIT
  8.  
  9. // @match https://pan.quark.cn/list*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=quark.cn
  11. // @grant GM_xmlhttpRequest
  12. // @grant GM_log
  13. // @grant window.onurlchange
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. 'use strict';
  18. GM_log('quark download is running.');
  19.  
  20. setInterval(gmMain, 250);
  21. const fidAttrName = 'data-row-key';
  22.  
  23. function gmMain() {
  24. const checkboxes = document.getElementsByClassName('ant-checkbox-input');
  25. if (checkboxes === undefined || checkboxes.length <= 1) {
  26. console.log('document element not loaded yet');
  27. return;
  28. }
  29.  
  30. // checkboxes.length > 1
  31. console.log('document element loaded, start dealing download btn');
  32. for (let i = 0; i < checkboxes.length; i++) {
  33. checkboxes[i].addEventListener('change', (event) => {
  34. if (event.currentTarget.checked) {
  35. addDownloadBtnListener();
  36. }
  37. })
  38. }
  39.  
  40. // flow download btn
  41. addFlowDownloadBtnListener();
  42. }
  43.  
  44. function addDownloadBtnListener() {
  45. let downloadBtn = getDownloadBtn();
  46. downloadBtn.replaceWith(downloadBtn.cloneNode(true)); // remove all event listener
  47. downloadBtn = getDownloadBtn();
  48.  
  49. downloadBtn.addEventListener('click', () => {
  50. let fids = getSelectedFids();
  51. download(fids);
  52. })
  53. }
  54.  
  55. function addFlowDownloadBtnListener() {
  56. for (const btn of getFlowDownloadBtns()) {
  57. btn.replaceWith(btn.cloneNode(true)); // remove all event listener
  58. }
  59.  
  60. for (const btn of getFlowDownloadBtns()) {
  61. btn.addEventListener('click', () => {
  62. const fid = btn.parentElement.parentElement.parentElement.parentElement.parentElement.getAttribute(fidAttrName);
  63. download([fid]);
  64. })
  65. }
  66. }
  67.  
  68. function download(fids) {
  69. GM_xmlhttpRequest({
  70. method: "POST",
  71. url: "https://drive.quark.cn/1/clouddrive/file/download?pr=ucpro&fr=pc&ve=2.1.5",
  72. headers: {
  73. "Content-Type": "application/json;charset=utf-8"
  74. },
  75. data: JSON.stringify({"fids": fids}),
  76. onload: function (res) {
  77. console.log('get real download url, fids: %o, res: ', fids, res.responseText);
  78. let resData = JSON.parse(res.responseText).data;
  79. if (resData === undefined || resData.length === 0) {
  80. console.log('error!, data is empty. request fids: ', fids);
  81. alert('获取直链失败, 请尝试刷新页面!注意,文件夹不支持直链下载!')
  82. return;
  83. } else {
  84. console.log('get real download url, size: ', resData.length)
  85. }
  86.  
  87. resData.forEach(o => window.open(o.download_url));
  88. }
  89. });
  90. }
  91.  
  92. function getDownloadBtn() {
  93. let btnGroup = document.getElementsByClassName('ant-btn btn-file');
  94. let downloadBtn;
  95. for (let i = 0; i < btnGroup.length; i++) {
  96. if ('下载' === btnGroup[i].firstElementChild.innerText) {
  97. downloadBtn = btnGroup[i];
  98. }
  99. }
  100. return downloadBtn;
  101. }
  102.  
  103. function getFlowDownloadBtns() {
  104. return document.getElementsByClassName('hover-oper-item hoitem-down');
  105. }
  106.  
  107. function getSelectedFids() {
  108. const checkboxes = document.getElementsByClassName('ant-checkbox-input');
  109. let fids = [];
  110. for (let i = 0; i < checkboxes.length; i++) {
  111. if (checkboxes[i].checked) {
  112. const fid = checkboxes[i].parentElement.parentElement.parentElement.parentElement.parentElement.getAttribute('data-row-key');
  113. if (fid !== undefined && fid !== '') {
  114. fids.push(fid);
  115. }
  116. }
  117. }
  118. return fids;
  119. }
  120. })();

QingJ © 2025

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