Jira Uncheck bulk edit emailer

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

当前为 2017-09-30 提交的版本,查看 最新版本

  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;