Disable Spellcheck Globally

disables nasty spellcheck that Edge refuses to disable

  1. // ==UserScript==
  2. // @name Disable Spellcheck Globally
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description disables nasty spellcheck that Edge refuses to disable
  6. // @author The_GTA / Martin
  7. // @match *
  8. // @include *
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. window.document.body.spellcheck = false;
  16.  
  17. window.document.addEventListener("click",
  18. function(param)
  19. {
  20. param.target.spellcheck = false;
  21. });
  22. })();