您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在思维导图预览图片时增加查看原图按钮
// ==UserScript== // @name 金山文档增加查看原图按钮 // @namespace http://tampermonkey.net/ // @version 2024-04-19 // @description 在思维导图预览图片时增加查看原图按钮 // @author AN drew // @match https://www.kdocs.cn/view/* // @match https://wps.processon.com/diagrams/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; if(window.location.href.indexOf('wps.processon.com') > -1) { setInterval(function(){ if($('#img-preview .bottom-tool').length>0) { if($('#img-preview .tool-item.orgin').length==0) { let url=$('#img-preview .current-image').attr('src'); $('#img-preview .bottom-tool').append('<div class="tool-item orgin" tit="origin" title-pos="top" original-title="原图"><a href="'+url+'" target="_blank"><span style="color:white">查看原图</span></a></div>') } else { if($('#img-preview .current-image').attr('src')!=$('#img-preview .tool-item.orgin a').attr('href')) { $('#img-preview .tool-item.orgin a').attr('href', $('#img-preview .current-image').attr('src')) } } } },1000); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址