// ==UserScript== // @name 慕课网手记页面优化 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 文章加宽,右侧推荐隐藏 // @author zhuhongjie // @match http://www.imooc.com/article/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... //文章加宽到1000px document.querySelector('.left_essay').style.width='1000px'; //右侧推荐不显示 document.querySelector('.right_recommend').style.display='none'; })();