Enables the native Spellcheck for Outlook Online
// ==UserScript== // @name Native Spellcheck for Outlook Online // @namespace http://tampermonkey.net/ // @version 1.0 // @description Enables the native Spellcheck for Outlook Online // @author Gerrit De Vriese // @match https://outlook.office.com/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict' window.document.addEventListener("click", function (param) { param.target.spellcheck = true }) })()