您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Just a simple util to to make submitting bug easier
当前为
// ==UserScript== // @name Click to set default description // @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</h2><h3>Account:</h3><h3>Password:</h3><h3>Page URL:</h3><h2>Reproduce Steps:</h2><p><br></p><h2>Expect Result:</h2><p><br></p><h2>Actual Result:</h2><p><br></p><p><br></p><p><br></p></body>"); } });