Twitter Auto Unmute Videos

Automatically unmutes all videos on Twitter

// ==UserScript==
// @name         Twitter Auto Unmute Videos
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Automatically unmutes all videos on Twitter
// @author       Your Name
// @match        https://twitter.com/*
// @match        https://x.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function unmuteVideos() {
        let videos = document.querySelectorAll('video');
        videos.forEach(video => {
            video.muted = false;
        });
    }

    // Check for video elements every second and unmute them
    setInterval(unmuteVideos, 1000);
})();

QingJ © 2025

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