I made a userscript to get rid of the godawful waste of space that is the "Popular Collections" section:
(Because I fully expect any feedback on the section to be "This is how it is now, get used to it.")
Edit: Setup a repo for these with a before/after image: https://github.com/Synthlight/Nexus-Design-Fixes
// ==UserScript==
// @name Nuke "Popular Collections" on Nexus game pages.
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Remove the godawful waste of space that is the "Popular Collections" section from Nexus game's root page. (Because I've zero expectations that anyone in charge of design will ever actually act on feedback like this.)
// @author LordGregory
// @match https://www.nexusmods.com/*
// @grant none
// ==/UserScript==
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
(function() {
getElementByXpath("//section[@aria-labelledby=\"popular-collections-header\"]").remove();
})();
And one to remove the game header that wastes space at the top:
// ==UserScript==
// @name Nuke the Game Header on Nexus game pages.
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Remove the godawful waste of space that is the game header section from Nexus game's root page. (Because I've zero expectations that anyone in charge of design will ever actually act on feedback like this.)
// @author LordGregory
// @match https://www.nexusmods.com/*
// @grant none
// ==/UserScript==
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
(function() {
getElementByXpath("//div[./nav[@aria-label=\"Breadcrumb navigation\"]]").remove();
})();
Edit: And, yup, what I expected to happen actually happened:
Got a suggestion on changing some part of the new design? Well, too bad. It'll just be denied/ignored. Get used to the new design, it's here to stay.