Bond Smith 在 微信公众号文章图片一键下载油猴脚本 中发帖
// ==UserScript==
// @name 微信公众号文章图片下载
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 微信公众号文章一键下载图片(自动限速、格式识别、进度反馈)
// @author Huang
// @match https://mp.weixin.qq.com/s/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function () {
'use strict';
// 下载间隔(毫秒),避免浏览器因短时间内多次触发下载而拦截
const DOWNLOAD_INTERVAL = 40...