// ==UserScript== // @name MouseHunt - Hide max owned items // @author Hazado // @namespace https://greasyfork.org/en/scripts/423438 // @version 1.0 // @description Hides max owned items in shop // @include https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js // @match http://www.mousehuntgame.com/* // @match https://www.mousehuntgame.com/* // @downloadURL none // ==/UserScript== if (!localStorage.getItem("maxOwnedItems")) { localStorage.setItem("maxOwnedItems", "Y"); } $(document).ready(function () { var observerMaxItem = new MutationObserver(callback); var observerOptionsMaxItem = { childList: true, attributes: true, subtree: true }; if ($('.mousehuntHud-page-tabHeader.cheese_shoppe').get(0)) { hideMaxOwned(); observerMaxItem.observe($('.mousehuntHud-page-tabContentContainer').get(0), observerOptionsMaxItem); } else if ($('.mousehuntHud-page-tabContent.game_settings').get(0)) { addSetting(); observerMaxItem.observe($('.mousehuntHud-page-tabContentContainer').get(0), observerOptionsMaxItem); } else if ($('.mousehuntHud-page-tabContentContainer').get(0)) { //not on profile at all. probably at camp. observerMaxItem.observe($('.mousehuntHud-page-tabContentContainer').get(0), observerOptionsMaxItem); } else { return false } }); function callback(mutationList, observer) { mutationList.forEach(mutation => { if (mutation.type == 'attributes') { let $nodes = $(mutation.target); if ($nodes.hasClass('mousehuntHud-page-tabHeader cheese_shoppe')) { hideMaxOwned(); } else if ($nodes.hasClass('mousehuntHud-page-tabContent cheese_shoppe')) { hideMaxOwned(); } else if ($nodes.hasClass('mousehuntHud-page-tabContent game_settings')) { if (!$('div:contains("Hide Max Owned Items in Shop")').get(0)) { addSetting() } } } }) }; function hideMaxOwned() { if (localStorage.getItem("maxOwnedItems") == "Y") { $('[class*="own_max"]').css('visibility', "collapse"); $('[class*="own_max"]').css('margin-bottom', "-2px"); } } function addSetting() { if (localStorage.getItem("maxOwnedItems") == "Y") { $('.settingRowTable').slice(-1).append('
Hide Max Owned Items in Shop
Enabled
Setting provided by "MouseHunt - Hide max owned items" script
It hides all items you own the max of when enabled.
') } else { $('.settingRowTable').slice(-1).append('
Hide Max Owned Items in Shop
Enabled
Setting provided by "MouseHunt - Hide max owned items" script
It hides all items you own the max of when enabled.
') } }