金山文档增加查看原图按钮

在思维导图预览图片时增加查看原图按钮

// ==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或关注我们的公众号极客氢云获取最新地址