东方财富跳转新版本页面

2024/3/20 09:31:28

  1. // ==UserScript==
  2. // @name 东方财富跳转新版本页面
  3. // @namespace Violentmonkey Scripts2
  4. // @match *://quote.eastmoney.com/sh*
  5. // @match *://quote.eastmoney.com/sz*
  6. // @grant none
  7. // @version 1.0
  8. // @author -
  9. // @license MIT
  10. // @description 2024/3/20 09:31:28
  11. // @grant GM_addStyle
  12. // @grant unsafeWindow
  13. // @supportURL https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=270
  14. // @homepage https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=270
  15. // ==/UserScript==
  16.  
  17. (function () {
  18.  
  19. function redirectToConcept(symbol) {
  20. var parts = window.location.href.split(".com/");
  21. var newUrl = parts[0] + ".com/concept/" + parts[1];
  22. window.location.href = newUrl;
  23.  
  24. GM_addStyle({})
  25. }
  26.  
  27. redirectToConcept();
  28. })();

QingJ © 2025

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