Disable Playlist Blur Background

Disables the playlist blur background when you view a playlist

  1. // ==UserScript==
  2. // @name Disable Playlist Blur Background
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Disables the playlist blur background when you view a playlist
  6. // @author TB-303
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. GM_addStyle
  17. (`.immersive-header-background-wrapper.ytd-playlist-header-renderer {
  18. display: none;
  19. }
  20. `);
  21.  
  22. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址