JIRA、Confluence外链新窗口打开

JIRA、Confluence优化

// ==UserScript==
// @name         JIRA、Confluence外链新窗口打开
// @namespace    jessezhang1986
// @version      0.1.0
// @description  JIRA、Confluence优化
// @author       [email protected]
// @include      http*://jira*
// @include      http*://confluence*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    //外链新窗口打开
    $('body').on("click", "a.external-link", function(e){
        if($(e.target).attr('target') != "_blank"){
            $(e.target).attr('target', "_blank");
        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址