Make Jira's Issue Name Bar Fixed

Tested at 12/19/2022, 5:59:44 PM

  1. // ==UserScript==
  2. // @name Make Jira's Issue Name Bar Fixed
  3. // @namespace Violentmonkey Scripts
  4. // @match https://*.atlassian.net/*
  5. // @grant none
  6. // @version 1.1
  7. // @license MIT
  8. // @author Bevis
  9. // @description Tested at 12/19/2022, 5:59:44 PM
  10. // ==/UserScript==
  11.  
  12. (function($) {
  13. setInterval(() => {
  14. if (!/^\/browse\/.+-\d+$/.test(window.location.pathname)) {
  15. return
  16. }
  17.  
  18. if (jQuery('#jira-issue-header + div').find('h1').length == 0) {
  19. return
  20. }
  21.  
  22. $('#jira-issue-header + div').appendTo('#jira-issue-header')
  23. }, 500)
  24. })(jQuery)

QingJ © 2025

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