Note.ms Font Changer

Change note.ms font

// ==UserScript==
// @name         Note.ms Font Changer
// @match        https://note.ms/*
// @license      MIT
// @description  Change note.ms font
// @version      1.0
// @namespace    https://greasyfork.org/users/1489015
// ==/UserScript==
(function(){
  $('textarea').css('font-family','Fira Code');
})();