// ==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;
}
`
; function injectStyle() { const style = document.createElement('style'); style.textContent = css; document.head.appendChild(style); } injectStyle(); })();

📌 转载信息
转载时间:
2026/1/8 18:01:38

标签: 油猴脚本, JavaScript, Tampermonkey, 微信文章, 图片下载

添加新评论