Youtube - Hide Volume Control

Hides Youtube videos' volume control.

  1. // ==UserScript==
  2. // @name Youtube - Hide Volume Control
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Hides Youtube videos' volume control.
  6. // @author Gökhan Sarı
  7. // @match https://www.youtube.com/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $(document).ready(function() {
  15. $("button.ytp-mute-button").hide();
  16. });
  17. })();