Greasy Fork is available in English.
GM_download but it actually works
当前为 
        此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/523457/1518908/GM_DL.js
      
// ==UserScript== // @name GM_DL // @namespace Violentmonkey Scripts // @grant GM.xmlHttpRequest // @version 1.2 // @author http://greasyfork.icu/en/users/1409235-paywalldespiser // @description GM_download but it actually works // @license MIT // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js // ==/UserScript== /** * GM_download but it actually works * * @param {{ url: string | URL; data?: string; headers?: { [key: string]: string }; redirect?: 'follow' | 'error' | 'manual' = ['follow']; filename: string; method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'TRACE' | 'OPTIONS' | 'CONNECT' = ['GET']; }} * @returns {Promise<void>} */ function GM_DL({ url, filename, method = 'GET', redirect, data, headers }) { return GM.xmlHttpRequest({ url, method, responseType: 'blob', redirect, data, headers, }).then(({ response }) => saveAs(response, filename)); }