HDPI thumbnails on itch.io dashboard

Forces dashboard' game thumbnails to use HDPI versions of the images.

// ==UserScript==
// @name         HDPI thumbnails on itch.io dashboard
// @namespace    http://yal.cc/
// @version      1.0
// @description  Forces dashboard' game thumbnails to use HDPI versions of the images.
// @author       YellowAfterlife
// @match        https://itch.io/dashboard
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
	var covers = document.getElementsByClassName("cover_image");
	for (var i = 0; i < covers.length; i++) {
		var css = covers[i].style;
		var mt = /(url\("[^"]+"\)) 2x/g.exec(css.backgroundImage);
		if (mt) css.backgroundImage = mt[1];
	}
})();

QingJ © 2025

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