🏠 Home 

Native Spellcheck for Outlook Online

Enables the native Spellcheck for Outlook Online


Install this script?
// ==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
})
})()