您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
GM_download but it actually works
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/523457/1518871/GM_DL.js
// ==UserScript== // @name GM_DL // @namespace Violentmonkey Scripts // @grant GM.xmlHttpRequest // @version 1.1 // @author https://greasyfork.org/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 }; filename: string; method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'TRACE' | 'OPTIONS' | 'CONNECT' = ['GET']; }} * @returns {Promise<void>} */ function GM_DL({ url, filename, method = 'GET', data, headers }) { return GM.xmlHttpRequest({ url, method, responseType: 'blob', data, headers, }).then(({ response }) => saveAs(response, filename)); }