您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This enhances the JIra screen editor by also showing the field IDs in addition to the name as the name is not required to be unique.
// ==UserScript== // @name Show customfield IDs in Jira screen editor // @namespace http://schuppentier.org/ // @version 1.0 // @description This enhances the JIra screen editor by also showing the field IDs in addition to the name as the name is not required to be unique. // @author Dennis Stengele // @match https://*.atlassian.net/secure/admin/ConfigureFieldScreen.jspa* // @icon https://www.google.com/s2/favicons?sz=64&domain=atlassian.net // @require https://bowercdn.net/c/arrive-2.4.1/minified/arrive.min.js // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.arrive("div#screen-editor tr.aui-restfultable-readonly", function() { const fieldId = this.getAttribute("data-id") const cell = this.querySelector("td.field-name-cell") const newValue = `${cell.textContent} (${fieldId})` cell.textContent = newValue }) })();