YouTube - Remove Stream Chat Heart Icon

This script removes the annoying hearth icon on top of the live stream chat.

  1. // ==UserScript==
  2. // @name YouTube - Remove Stream Chat Heart Icon
  3. // @namespace http://youtube.com/
  4. // @version 1.0
  5. // @description This script removes the annoying hearth icon on top of the live stream chat.
  6. // @author Faab007NL
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // @grant none
  10. // @run-at document-end
  11. // @sandbox DOM
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. function init(){
  19. const reactionControlPanel = document.getElementById('reaction-control-panel');
  20. reactionControlPanel.remove();
  21. }
  22. init();
  23. })();