// ==UserScript== // @name 天天基金网,基金推荐 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 基金推荐! // @include https://fund.eastmoney.com/data/fundranking.html* // @downloadURL none // ==/UserScript== (function () { "use strict"; let $ = jQuery; setTimeout(() => { $("#dbtable > tbody > tr").each(function () { let tax = parseFloat($(this).find("td").eq(18).text()); let week = parseFloat($(this).find("td").eq(8).text()); let month = parseFloat($(this).find("td").eq(9).text()); if (!tax && week / 7 >= 1 && month / 30 >= 1) { $(this).append("买啊"); $(this).find("td").css("background-color", "#0f09"); } }); }, 600); })();