您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the skills section of the account page actually usable on non-huge monitors.
当前为
// ==UserScript== // @name LFG Account Page Cleanup // @namespace http://scripts.chris.charabaruk.com/leagueforgamers.com/account // @author coldacid // @version 1 // @description Makes the skills section of the account page actually usable on non-huge monitors. // @include http*://leagueforgamers.com/account // @include http*://*.leagueforgamers.com/account // @grant none // ==/UserScript== $('form div.profile-card:not(.bio-card)').first() .css('max-width', '62.5rem') .parent() .addClass('large-8') .removeClass('large-4'); $('div.skill.row > div.category') .addClass('small-3') .removeClass('small-7'); $('div.skill.row > div.confidence') .addClass('small-2') .removeClass('small-5'); $('div.skill.row > div:last-child') .addClass('small-7') .removeClass('small-12'); $('form div.small-4.right > input[type=submit]') .css('margin-right', '0.9375rem');