// ==UserScript== // @name 慕课网手记页面优化 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 文章展示界面加宽 // @author xiaozhu // @match http://www.imooc.com/article/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... //页面宽度增加到1200px document.querySelector('.main_con').style.width='1200px'; //文章宽度增加到1000px document.querySelector('.left_essay').style.width='1000px'; })();