Greasy Fork is available in English.

慕课网手记页面优化

文章展示界面加宽

// ==UserScript==
// @name         慕课网手记页面优化
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  文章展示界面加宽
// @author       xiaozhu
// @match        http://www.imooc.com/article/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    //页面宽度增加到1200px
    document.querySelector('.main_con').style.width='1200px';
    //文章宽度增加到900px
    document.querySelector('.left_essay').style.width='900px';
    //左侧栏位置左移
    document.querySelector('.active-box').style.left='40%';

    

})();