Auto music with Melodice

Discussions about BGA (all languages)
Forum rules
Warning: challenging a moderation in Forum = 10 days ban
More info & details about how to challenge a moderation: viewtopic.php?p=119756
Post Reply
User avatar
azhake
Posts: 14
Joined: 23 April 2015, 02:50

Auto music with Melodice

Post by azhake »

Hi,

I love the Melodice music functionality, so I wrote a userscript to automatically activate the music tab on any game table. You need Greasemonkey, Tampermonkey, or Violentmonkey to use this.

Code: Select all

// ==UserScript==
// @name        Auto Activate Music Tab on Boardgame Arena
// @namespace   Violentmonkey Scripts
// @match       https://boardgamearena.com/*/*table*
// @grant       none
// @version     1.0
// @author      Andreas Jonsson
// @description 2/4/2025, 8:21:38 PM
// ==/UserScript==

window.onload = function() {
    var musicTab = document.getElementById('pageheader_music');
    if (musicTab) {
        musicTab.click();
    }
};
Enjoy!
Post Reply

Return to “Discussions”