// ==UserScript== // @name Instagram 恢复图片右键菜单 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 穿透遮罩层,让ins图片可以直接右键复制 // @author StarFreedomX // @match https://www.instagram.com/* // @license MIT // @grant none // @run-at document-start // @downloadURL https://update.greasyfork.icu/scripts/574389/Instagram%20%E6%81%A2%E5%A4%8D%E5%9B%BE%E7%89%87%E5%8F%B3%E9%94%AE%E8%8F%9C%E5%8D%95.user.js // @updateURL https://update.greasyfork.icu/scripts/574389/Instagram%20%E6%81%A2%E5%A4%8D%E5%9B%BE%E7%89%87%E5%8F%B3%E9%94%AE%E8%8F%9C%E5%8D%95.meta.js // ==/UserScript== (function() { const style = document.createElement('style'); style.innerHTML = ` div._aagu div { pointer-events: none !important; } div._aagu img { pointer-events: auto !important; } `; document.documentElement.appendChild(style); })();