Greasy Fork is available in English.

Hide the Detailed Ticket View in JIRA

Pressing escape in JIRA will close the detailed ticket view if its open

  1. // ==UserScript==
  2. // @name Hide the Detailed Ticket View in JIRA
  3. // @namespace chriskim06
  4. // @description Pressing escape in JIRA will close the detailed ticket view if its open
  5. // @include https://*jira*com/secure/*Board*
  6. // @version 1.0.0
  7. // @grant none
  8. // @locale en
  9. // ==/UserScript==
  10.  
  11. document.querySelector('html').addEventListener('keydown', function(e) {
  12. if (e.which === 27 && e.target.nodeName !== 'INPUT') {
  13. var close = document.querySelector('.ghx-iconfont.aui-icon.aui-icon-small.aui-iconfont-close-dialog');
  14. if (close !== null) {
  15. close.click();
  16. }
  17. }
  18. });