Uncheck Notify watchers in Confluence

Unchecks the Notify watchers checkbox in Confluence editor by default

  1. // ==UserScript==
  2. // @name Uncheck Notify watchers in Confluence
  3. // @version 0.2
  4. // @description Unchecks the Notify watchers checkbox in Confluence editor by default
  5. // @author Antti Hietala
  6. // @license Attribution 4.0 International (CC BY 4.0)
  7. // @match */pages/editpage.action?*
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/10793
  10. // ==/UserScript==
  11. AJS.$('#notifyWatchers').attr('checked', false);