东方财富自选页极简

东方财富自选页极简,不需要其他花里胡哨的推荐的

  1. // ==UserScript==
  2. // @name 东方财富自选页极简
  3. // @version 2022.12.07.1
  4. // @description 东方财富自选页极简,不需要其他花里胡哨的推荐的
  5. // @match *http://quote.eastmoney.com/zixuan/?from=home*
  6. // @namespace
  7. // @license Agreed
  8. // @run-at document-body
  9. // ==/UserScript==
  10.  
  11.  
  12. (function() {
  13. var css = '{display:none !important;height:0 !important}';
  14. // 东方财富自选页
  15. css += '.main,.topnav{width:89% !important}';
  16. css += '.wl_bot,.qqsj,.newsgubass,.mainr,.logot{display:none !important}'
  17. css += 'body{display: flex;flex-wrap: nowrap;align-items: center;flex-direction: column;}'
  18.  
  19. loadStyle(css)
  20. function loadStyle(css) {
  21. var style = document.createElement('style');
  22. style.type = 'text/css';
  23. style.rel = 'stylesheet';
  24. style.appendChild(document.createTextNode(css));
  25. var head = document.getElementsByTagName('head')[0];
  26. head.appendChild(style);
  27. document.getElementsByTagName('title')[0].innerText='JavaScript'
  28. }
  29. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址