ToolTools for MilkyWayIdle. Open your profile at avatar click
// ==UserScript==
// @name MWI QoL Profile on avatar
// @namespace http://tampermonkey.net/
// @version 1.0
// @description ToolTools for MilkyWayIdle. Open your profile at avatar click
// @author AlexZaw
// @license MIT License
// @match https://www.milkywayidle.com/*
// @match https://test.milkywayidle.com/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function () {
"use strict";
new MutationObserver(onAvatarClick).observe(document, {
childList: true,
subtree: true
});
function onAvatarClick(changes, observer) {
if (document.querySelector(".MainPanel_mainPanel__Ex2Ir")) {
observer.disconnect();
document
.querySelector(".Header_avatar__2RQgo")
.addEventListener("click", () => {
document
.querySelector('[aria-label="navigationBar.settings"]')
.parentNode.click();
document
.querySelector(".SettingsPanel_profileTab__214Bj")
.querySelector(".Button_button__1Fe9z")
.click();
});
}
}
})();