Compact 12306

缩小新版 12306 的页面宽度

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        Compact 12306
// @description 缩小新版 12306 的页面宽度
// @author      Arnie97
// @version     2018.11.09
// @license     CC0
// @namespace   https://github.com/Arnie97
// @match       https://kyfw.12306.cn/otn/*
// @grant       none
// ==/UserScript==

$(() => {
  $('.header-right').width(780);
  $('.nav,.wrapper').width(980);
  $('.nav-item').width(120);
  $('.content').attr('style', 'min-height: 0px;');
  $('.nav-con>li').attr('style', 'width: 120px; padding-left: 20px;');
  for (var i = 2; i <= 6; i++) $('.nav-col' + i).width(i * 120);
});