No Blur

Removes youtube blur video background

  1. // ==UserScript==
  2. // @name No Blur
  3. // @description Removes youtube blur video background
  4. // @version 0.1.1
  5. // @author 0vC4
  6. // @namespace https://greasyfork.org/users/670183
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // @license MIT
  10. // @grant GM_addStyle
  11. // ==/UserScript==
  12.  
  13. GM_addStyle
  14. (`#cinematics {
  15. display: none !important;
  16. }
  17. #shorts-cinematic-container {
  18. display: none !important;
  19. }`);