Redirects the Erome homepage to the explore 'new' page to save two clicks.
// ==UserScript==
// @name Erome Homepage Redirector
// @namespace http://tampermonkey.net/
// @icon data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIj4KICA8cGF0aCBkPSJNIDE2IDI4Ljc3IEMgOC4wNyAyNC4yNiwgMC41MyAxNi4xMCwgMC41MyAxMS40MCBDIDAuNTMgMS4yMCwgMTMuNjYgMS40MCwgMTYgNy44OCBDIDE4LjM0IDEuNDAsIDMxLjQ3IDEuMjAsIDMxLjQ3IDExLjQwIEMgMzEuNDcgMTYuMTAsIDIzLjkzIDI0LjI2LCAxNiAyOC43NyBaIiBmaWxsPSIjZWU1Zjk2Ii8+Cjwvc3ZnPg==
// @version 1.0
// @description Redirects the Erome homepage to the explore 'new' page to save two clicks.
// @author lol_nocode
// @match https://www.erome.com/
// @run-at document-start
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Remove "/new" from the URL below if you prefer the "Hot" section.
const destination = "https://www.erome.com/explore/new";
// Perform the redirect
window.location.replace(destination);
})();