您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
put the game info labels above the game rather than fixed to the right side, which can overlap with narrow widths
// ==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 } ` }))