Sets the volume of Instagram videos to 10%.
// ==UserScript==
// @name Instagram Video Volume Controller
// @name:ja Instagramの動画の音量を下げる
// @namespace https://gf.qytechs.cn/users/1324207
// @match https://www.instagram.com/*
// @version 1.2
// @author Lark8037
// @description Sets the volume of Instagram videos to 10%.
// @description:ja Instagramの動画の音量を10%にします。
// @license MIT
// @icon https://www.instagram.com/favicon.ico
// ==/UserScript==
(() => {
const v = () => document.querySelectorAll('video').forEach(e => {
if (e.volume !== 0.1) e.volume = 0.1;
});
addEventListener('load', v);
addEventListener('DOMContentLoaded', v);
new MutationObserver(v).observe(document, {subtree:1,childList:1});
v();
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址