您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the restriction from saving the image
// ==UserScript== // @name moca-news Image // @author AnnAngela // @description Remove the restriction from saving the image // @version 1.0.3 // @namespace https://gf.qytechs.cn/users/129402 // @supportURL https://gf.qytechs.cn/scripts/397327-moca-news-image/feedback // @license GNU General Public License v3.0 or later // @compatible chrome // @compatible firefox // @compatible opera // @compatible safari // @match https://moca-news.net/article/*/*/image*.html // @grant unsafeWindow // @run-at document-start // ==/UserScript== setInterval(() => { unsafeWindow.document.querySelectorAll("#image_cvs, #image_cvs_cover").forEach(e => { for (let i in e) { if (i.startsWith("on")) { e.removeAttribute(i); } } }) }, 100) const s = unsafeWindow.document.createElement("style"); s.innerText = "#image_cvs_cover { display: none !important; pointer-events: none !important; } #cvs_wrap_1 { opacity: 1 !important; }"; unsafeWindow.document.head.append(s);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址