Greasy Fork is available in English.
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);
})();