Battledudes.io Menu Music

Add custom menu music to Battledudes.io

目前為 2024-01-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Battledudes.io Menu Music
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Add custom menu music to Battledudes.io
// @author       Trịnh Hưng
// @match        https://battledudes.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Replace 'YOUR_AUDIO_FILE_URL' with the actual URL of your audio file
    var audioFileUrl = 'https://surviv-halloween.pro/audio/ambient/menu_music_01.mp3';

    // Create an audio element
    var audioElement = document.createElement('audio');
    audioElement.src = audioFileUrl;
    audioElement.loop = true;

    // Append the audio element to the body
    document.body.appendChild(audioElement);

    // Play the audio when the script runs
    audioElement.play();
})();