// ==UserScript== // @name NH Mazaa Tag // @namespace http://tampermonkey.net/ // @version 1.0 // @description Adds an "Others" link before Favorites. // @match https://nhentai.net/ // @match https://nhentai.net/* // @grant none // ==/UserScript== function ensureButton() { const menu = document.querySelector(".menu.left"); if (!menu) return; if (!menu.querySelector(".tm-others")) { const a = document.createElement("a"); a.className = "tm-others"; a.href = "/tag/mother/"; a.textContent = "Mothercon"; a.style.backgroundColor = "moccasin"; a.style.color = "black"; a.style.borderRadius = "5px"; a.style.fontWeight = "bold"; a.style.display = "inline-block"; a.style.paddingTop = "10px"; a.style.paddingLeft = "5px"; a.style.paddingRight = "5px"; a.style.height = "40px"; menu.appendChild(a); } } ensureButton(); new MutationObserver(ensureButton).observe(document.body, { childList: true, subtree: true });