Disable editing Jira's task on click

Disable clicking on JIRA tasks to update description

  1. // ==UserScript==
  2. // @name Disable editing Jira's task on click
  3. // @license MIT
  4. // @version 0.1
  5. // @description Disable clicking on JIRA tasks to update description
  6. // @match https://*.atlassian.net/*
  7. // @namespace https://gf.qytechs.cn/users/950499
  8. // ==/UserScript==
  9.  
  10. (function () {
  11. const onLoad = () => {
  12. const elements = [...document.querySelectorAll('.ak-renderer-document')];
  13. elements.map(
  14. el => el.addEventListener('click', () => {event.stopImmediatePropagation();}, true)
  15. );
  16. };
  17. document.addEventListener('DOMContentLoaded', onLoad, false);
  18. document.addEventListener("DOMNodeInserted", onLoad, false);
  19. })();

QingJ © 2025

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