disables nasty spellcheck that Edge refuses to disable
当前为
// ==UserScript==
// @name Disable Spellcheck Globally
// @namespace http://tampermonkey.net/
// @version 1.0
// @description disables nasty spellcheck that Edge refuses to disable
// @author The_GTA / Martin
// @match *
// @include *
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.document.body.spellcheck = false;
})();