显示12306到达车站

显示12306网站的到达车站

// ==UserScript==
// @name         显示12306到达车站
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       You
// @match        https://kyfw.12306.cn/otn/leftTicket/*
// @grant        none
// @description 显示12306网站的到达车站
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.getElementById("sear-sel-bd").style.height="36px";
    var arrival = document.getElementsByClassName("section clearfix")[2]
    arrival.setAttribute("style", "display: true")
})();