YouTube Music album art resolution fix

Forces YouTube Music to load now playing album art at a decent resolution so it doesn't look like shit.

  1. // ==UserScript==
  2. // @name YouTube Music album art resolution fix
  3. // @namespace https://itsad.am
  4. // @version 1.2
  5. // @description Forces YouTube Music to load now playing album art at a decent resolution so it doesn't look like shit.
  6. // @author Adam Warren
  7. // @match https://music.youtube.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13.  
  14. setInterval(function () {
  15. var imgSelector = document.querySelector('.ytmusic-player .thumbnail img');
  16. var bigSrc = imgSelector.src;
  17. bigSrc = bigSrc.replace('w544-h544', 'w1920-h1920');
  18. imgSelector.src = bigSrc;
  19. }, 1000);
  20. })();

QingJ © 2025

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