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
// @version 0.1.0
// @license 0BSD
// ==/UserScript==
(() => {
if (document.title.includes("Windows Admin Center")) {
Object.defineProperty(location, "ancestorOrigins", {
value: []
});
GM_addStyle("nav > div.sme-layout-float-left { float: unset }");
}
})();