您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
基金推荐!
当前为
// ==UserScript== // @name 天天基金网,基金推荐 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 基金推荐! // @include https://fund.eastmoney.com/data/fundranking.html* // ==/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("<td style='font-weight:bold;background-color:#00fa'>买啊</td>"); $(this).find("td").css("background-color", "#0f09"); } }); }, 600); })();