Greasy Fork is available in English.

Steam Collection fix height

A fix for Steam's odd decision to make collections a strange height

// ==UserScript==
// @name         Steam Collection fix height
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  A fix for Steam's odd decision to make collections a strange height
// @author       You
// @match        https://steamcommunity.com/sharedfiles/managecollection/*
// @icon         https://www.google.com/s2/favicons?domain=steamcommunity.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.querySelector('#MySubscribedItems').style.height = "100%";
})();