🏠 Home 

Twitter unmute video

Unmute Twitter(x.com) videos.


Install this script?
  1. // ==UserScript==
  2. // @name Twitter unmute video
  3. // @namespace https://greasyfork.org/users/1259797
  4. // @version 2024-07-05
  5. // @description Unmute Twitter(x.com) videos.
  6. // @author PsychopathicKiller77
  7. // @match https://x.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. setInterval(function() {
  13. var videos = document.getElementsByTagName("video");
  14. for (var video of videos) {
  15. if (video != null && !video.paused && video.muted) {
  16. video.muted = false;
  17. }
  18. }
  19. }, 100);