您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
跳转到netaba.re查看条目排名涨跌情况
当前为
// ==UserScript== // @name Bangumi 股市 // @namespace https://github.com/bangumi/scripts/liaune // @version 0.2 // @description 跳转到netaba.re查看条目排名涨跌情况 // @author Liaune // @include /^https?://(bgm\.tv|chii\.in|bangumi\.tv)/* // @grant none // ==/UserScript== (function() { //首页添加查看当月涨跌榜链接 $("#prgCatrgoryFilter").append('<li><a id="dailyRcmdBtn" href="https://netaba.re/trending">BGM股市</a></li>'); //条目页面添加查看条目的排名,收藏等变化趋势链接 if(window.location.href.match(/\/subject\/\d+/)){ let trending = 'https://netaba.re'+window.location.href.match(/\/subject\/\d+/)[0]; $("#headerSubject").find("[class='navTabs clearit']").append("<li><a href="+trending+">行情走势</a></li>"); } })();