Windows Admin Center fix for Firefox

Fixes Windows Admin Center in Firefox

// ==UserScript==
// @name        Windows Admin Center fix for Firefox
// @description Fixes Windows Admin Center in Firefox
// @namespace   charles25565
// @match       *://*/*
// @grant       GM_addStyle
// @run-at      document-end
// @version     0.1.3
// @license     MIT
// ==/UserScript==

(() => {
  if (document.title.includes("Windows Admin Center")) {
    Object.defineProperty(location, "ancestorOrigins", {
      value: []
    });
    GM_addStyle("nav > div.sme-layout-float-left { float: unset }");
  }
})();