// ==UserScript== // @name FX678 网站自动关注重点消息 // @namespace http://tampermonkey.net/ // @version 1.0 // @description FX678,保持重要事件选中! // @author DK.Wang // @match *://rl.fx678.com/* // @license MIT // @icon https://www.google.com/s2/favicons?sz=64&domain=fx678.com // @grant none // @note 2023-04-08 1.0 FX678网站自动重要信息 // @downloadURL none // ==/UserScript== /* globals jQuery, $, waitForKeyElements */ (function() { 'use strict'; console.log("Link:" + window.location.href); // FX678 if (window.location.href.indexOf('rl.fx678.com')>-1) { $("a:contains('重要指标')").click(); } })();