NTS.live Volume Adjust

Adjust volume of music on NTS.live.

// ==UserScript==
// @name         NTS.live Volume Adjust
// @namespace    https://raw.githubusercontent.com/Inevitabby/nts-volume-adjust/refs/heads/main/nts-volume-adjust.user.js
// @version      1.1
// @description  Adjust volume of music on NTS.live.
// @author       Inevitabby
// @match        https://www.nts.live/*
// @match        https://*.mixcloud.com/*
// @grant        none
// ==/UserScript==

(function() {
    "use strict";
    const VOLUME = 0.1;

    if (location.hostname.includes("mixcloud.com") && !location.href.includes("NTSRadio")) return;

    const observer = new MutationObserver(() => {
        document.querySelectorAll("audio").forEach(audio => {
            audio.volume = VOLUME;
            audio.onvolumechange = () => audio.volume = VOLUME;
        });
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址