Jira Uncheck bulk edit emailer

Uncheck the "Send mail for this update" on the Jira Bulk Edit screen.

  1. // ==UserScript==
  2. // @name Jira Uncheck bulk edit emailer
  3. // @namespace randomecho.com
  4. // @description Uncheck the "Send mail for this update" on the Jira Bulk Edit screen.
  5. // @include https://*.atlassian.net/secure/views/bulkedit/BulkEditDetails.jspa
  6. // @include */secure/views/bulkedit/BulkEditDetails.jspa
  7. // @grant none
  8. // @copyright 2017 Soon Van
  9. // @author Soon Van - randomecho.com
  10. // @license http://opensource.org/licenses/BSD-3-Clause
  11. // @version 1.0
  12. // ==/UserScript==
  13.  
  14. var sendBulkEmail = document.getElementById('sendBulkNotificationCB');
  15. sendBulkEmail.checked = false;

QingJ © 2025

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