微信文章图片右键下载油猴脚本
// ==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();
})();