// ==UserScript== // @name 删除凤凰大风号文章无用页面元素 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://wemedia.ifeng.com/*/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/47389/%E5%88%A0%E9%99%A4%E5%87%A4%E5%87%B0%E5%A4%A7%E9%A3%8E%E5%8F%B7%E6%96%87%E7%AB%A0%E6%97%A0%E7%94%A8%E9%A1%B5%E9%9D%A2%E5%85%83%E7%B4%A0.user.js // @updateURL https://update.greasyfork.icu/scripts/47389/%E5%88%A0%E9%99%A4%E5%87%A4%E5%87%B0%E5%A4%A7%E9%A3%8E%E5%8F%B7%E6%96%87%E7%AB%A0%E6%97%A0%E7%94%A8%E9%A1%B5%E9%9D%A2%E5%85%83%E7%B4%A0.meta.js // ==/UserScript== (function() { 'use strict'; document.querySelector('.txt_share_box').remove(); document.querySelector('.yc_cmt').remove(); document.querySelector('.yc_intro').remove(); document.querySelector('.yc_rec').remove(); document.querySelector('.yc_con_r').remove(); document.querySelector('.yc_con_l').style.width = '100%'; // Your code here... })();