Stop game info labels from overlapping games on itch.io

put the game info labels above the game rather than fixed to the right side, which can overlap with narrow widths

Versione datata 20/05/2023. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name        Stop game info labels from overlapping games on itch.io
// @namespace   Itsnotlupus Industries
// @match       https://*.itch.io/*
// @grant       none
// @version     1.0
// @author      itsnotlupus
// @license     MIT
// @description put the game info labels above the game rather than fixed to the right side, which can overlap with narrow widths
// ==/UserScript==
const crel = (name, attrs, ...children) => ((e = Object.assign(document.createElement(name), attrs)) => (e.append(...children), e.__init?.(), e))();


document.head.append(crel('style',{
  type: 'text/css',
  textContent: `
    #user_tools { position: initial; display: block }
    #user_tools > li { display: inline }
  `
}))