Bond Smith微信文章图片右键下载油猴脚本 中发帖

// ==UserScript==
// @name 微信文章图片下载
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 微信文章图片右键下载
// @author You
// @match https://mp.weixin.qq.com/s/*
// @run-at document-end
// @grant none
// ==/UserScript==

(function() {
'use strict';

const css = `
.rich_media_content *{
pointer-events: all !important;
}
`;

functi...