pr0gramm.com 10% volume

Automatically adjusts the volume to 10% on direct HTML5/MP4 video-links on pr0gramm.com.

  1. // ==UserScript==
  2. // @name pr0gramm.com 10% volume
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Automatically adjusts the volume to 10% on direct HTML5/MP4 video-links on pr0gramm.com.
  6. // @author Taizun
  7. // @match https://vid.pr0gramm.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. document.getElementsByTagName('video')[0].volume = 0.1;