Unmute Twitter(x.com) videos.
- // ==UserScript==
- // @name Twitter unmute video
- // @namespace https://greasyfork.org/users/1259797
- // @version 2024-07-05
- // @description Unmute Twitter(x.com) videos.
- // @author PsychopathicKiller77
- // @match https://x.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
- // @grant none
- // @license MIT
- // ==/UserScript==
- setInterval(function() {
- var videos = document.getElementsByTagName("video");
- for (var video of videos) {
- if (video != null && !video.paused && video.muted) {
- video.muted = false;
- }
- }
- }, 100);