Invidious tooltip remover

hide the annoying video title tooltip on mouse hover that overlaps with videos

  1. // ==UserScript==
  2. // @name Invidious tooltip remover
  3. // @namespace localhost
  4. // @description hide the annoying video title tooltip on mouse hover that overlaps with videos
  5. // @version 1.0
  6. // @match https://invidio.us/watch*
  7. // ==/UserScript==
  8.  
  9. var elements=document.getElementsByClassName('vjs-tech');
  10. for(var i=0;i<elements.length;i++){elements[i].setAttribute('title','');}