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