Minimize video descriptions

Minimize the description of youtube videos automaticlly

  1. // ==UserScript==
  2. // @name Minimize video descriptions
  3. // @namespace https://github.com/N0amLevi/Minimize-YouTube-video-description
  4. // @version 1.0.0-alpha
  5. // @description Minimize the description of youtube videos automaticlly
  6. // @author Noam Levi
  7. // @license GNU GPLv3
  8. // @match http://*/*
  9. // @grant none
  10.  
  11. // @domain youtube.com
  12. // @include http*://www.youtube.com/*
  13. // @include http*://m.youtube.com/*
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. document.querySelector(`#collapse`).click();
  20. })();