// ==UserScript== // @name 东方财富新版本页面优化去广告 // @namespace Violentmonkey Scripts // @match *://quote.eastmoney.com/concept/* // @grant none // @version 1.0 // @author - // @license MIT // @grant GM_addStyle // @description 2024/5/24 10:58:15 // @downloadURL none // ==/UserScript== (function () { const classesToHide = [ '.hlinetg', '.scatg', '.emleftfloattg', '.footertg', '.footer2016', '.feedback', '.guid', '.bp2sll', '.bp2slr', '#posteditor', '.csiderbox:nth-of-type(1)', '.history', '.zxg_t', '.backtop' ]; classesToHide.forEach(className => { GM_addStyle(`${className} { display: none !important; }`); }); GM_addStyle('#mainlist { max-height: 600px !important;overflow: hidden;overflow-y: auto;width: 1200px}'); GM_addStyle('.table_list {width: 1200px}') GM_addStyle('.bp2sr {position: fixed;top: 26px; right: 12px; overflow-y: auto; height: 1200px;}'); GM_addStyle('::-webkit-scrollbar { display: none !important;}'); GM_addStyle('.mainbody { margin-left: 260px !important }'); GM_addStyle('.zxglist_ul { height: 600px !important;}'); document.body.style.overflow = 'hidden'; document.body.style.overflow = 'auto'; })()