您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
东方财富自选页极简,不需要其他花里胡哨的推荐的
当前为
// ==UserScript== // @name 东方财富自选页极简 // @version 2022.12.07 // @description 东方财富自选页极简,不需要其他花里胡哨的推荐的 // @match *http://quote.eastmoney.com/zixuan/?from=home* // @namespace // @license yes // @run-at document-body // ==/UserScript== (function() { var css = '{display:none !important;height:0 !important}'; // 东方财富自选页 css += '.main,.topnav{width:89% !important}'; css += '.wl_bot,.qqsj,.newsgubass,.mainr{display:none !important}' css += 'body{display: flex;flex-wrap: nowrap;align-items: center;flex-direction: column;}' loadStyle(css) function loadStyle(css) { var style = document.createElement('style'); style.type = 'text/css'; style.rel = 'stylesheet'; style.appendChild(document.createTextNode(css)); var head = document.getElementsByTagName('head')[0]; head.appendChild(style); } })();