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

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

目前為 2024-04-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name         金山文档增加查看原图按钮
// @namespace    http://tampermonkey.net/
// @version      2024-04-17
// @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 && !$('#img-preview .bottom-tool').hasClass('origin'))
            {
                let url=$('#img-preview .current-image').attr('src');
                $('#img-preview .bottom-tool').append('<div class="tool-item" tit="origin" title-pos="top" original-title="原图"><a href="'+url+'" target="_blank"><span style="color:white">查看原图</span></a></div>')
                $('#img-preview .bottom-tool').addClass('origin');
            }
        },1000);
    }
})();