Replace YouTube Logo

Replaces the YouTube logo with a cute Cinnamoroll logo.

  1. // ==UserScript==
  2. // @name Replace YouTube Logo
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Replaces the YouTube logo with a cute Cinnamoroll logo.
  6. // @author Zachary Kosove
  7. // @match *://www.youtube.com/*
  8. // @icon https://pbs.twimg.com/ext_tw_video_thumb/1732743347775868928/pu/img/Y6uLkpaeb8e7_9vD.jpg
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. GM_addStyle(`
  13. #logo-icon {
  14. content: url("https://i.pinimg.com/originals/26/76/1b/26761bb6052727e18ddf0022bf45d7e6.gif") !important;
  15. width: 85px;
  16. height: 50px;
  17. object-fit: cover;
  18. }
  19.  
  20. ytd-topbar-logo-renderer {
  21. width: 0%;
  22. }
  23. `);