LFG Account Page Cleanup

Makes the skills section of the account page actually usable on non-huge monitors.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        LFG Account Page Cleanup
// @namespace   http://scripts.chris.charabaruk.com/leagueforgamers.com/account
// @author      coldacid
// @version     1.1
// @description Makes the skills section of the account page actually usable on non-huge monitors.
// @include     http://leagueforgamers.com/account
// @include     https://leagueforgamers.com/account
// @include     http://*.leagueforgamers.com/account
// @include     https://*.leagueforgamers.com/account
// @grant       none
// ==/UserScript==

function GM_main ($) {
  $('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');
}

if (typeof jQuery === 'function') {
  console.log(`Using local jQuery, version ${jQuery.fn.jquery}`);
  GM_main(jQuery);
} else {
  console.log('Loading jQuery from Google CDN');
  add_jQuery(GM_main, '1.12.1');
}

function add_jQuery(callbackFn, jqVersion) {
  jqVersion      = jqVersion || "1.11.1";
  var D          = document,
      targ       = D.getElementsByTagName('head')[0] || D.body || D.documentElement,
      scriptNode = D.createElement('script');
  
  scriptNode.src = `//ajax.googleapis.com/ajax/libs/jquery/${jqVersion}/jquery.min.js`;
  scriptNode.addEventListener('load', function () {
    var scriptNode         = D.createElement('script');
    scriptNode.textContent =
      'var gm_jQuery = jquery.noConflict(true);\n'
      + '(' + callbackFn.toString() + ')(gm_jQuery);';
    targ.appendChild(scriptNode);
  }, false);
  targ.appendChild(scriptNode);
}