Instagram Video Volume Controller

Sets the volume of Instagram videos to 10%.

// ==UserScript==
// @name            Instagram Video Volume Controller
// @name:ja         Instagramの動画の音量を下げる
// @namespace       https://greasyfork.org/users/1324207
// @match           https://www.instagram.com/*
// @version         1.0
// @author          乾かしカラス
// @description     Sets the volume of Instagram videos to 10%.
// @description:ja  Instagramの動画の音量を10%にします。
// @license         MIT
// @icon            https://www.instagram.com/favicon.ico
// ==/UserScript==

(function() {
    'use strict';

    function setVolumeToTenPercent() {
        document.querySelectorAll('video').forEach(video => {
            if (video.volume !== 0.1) {
                video.volume = 0.1;
            }
        });
    }

    window.addEventListener('load', setVolumeToTenPercent);
    document.addEventListener('DOMContentLoaded', setVolumeToTenPercent);

    const observer = new MutationObserver(setVolumeToTenPercent);
    observer.observe(document.body, { childList: true, subtree: true });

    setVolumeToTenPercent();
})();