Erome UserScript

🧩 Syntax:
// ==UserScript==
// @name        Erome.com
// @namespace   Violentmonkey Scripts
// @match       https://www.erome.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 5/6/2025, 5:45:21 PM
// ==/UserScript==


addEventListener("load", (event) => {
  for(let albums of document.querySelectorAll(".page-content.row > div[id*='album-'] a.album-link")){
    albums.setAttribute("target", "_blank");
  }
}, true);