您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Just a simple util to to make submitting bug easier
// ==UserScript== // @name set default description template for jira issue // @namespace http://tampermonkey.net/ // @version 1.0 // @description Just a simple util to to make submitting bug easier // @author You // @match *://*.atlassian.net/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... $("body").click(function() { if ($("#description") && $("#description").html().trim() == "") { $("#description").html("* h2.Precondition\n" + "** Account:\n" + "** Password:\n" + "** Page URL:\n" + "\n" + "* h2.Reproduce Steps:\n" + "# \n" + "# \n" + "\n" + "* h2.Expect Result:\n" + "\n" + "\n" + "{color:#d04437}* h2.Actual Result:{color}\n" + "\n" + "\n" + "\n"); } }); })();