您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add the "All My Friend's Entries" box from the stats page in anime details.
当前为
// ==UserScript== // @name MyAnimeList.net: All My Friend's Entries // @version 0.1.1 // @description Add the "All My Friend's Entries" box from the stats page in anime details. // @include https://myanimelist.net/anime* // @include https://myanimelist.net/manga* // @namespace https://greasyfork.org/users/134346 // ==/UserScript== (function() { if (typeof jQuery == 'undefined') $ = unsafeWindow.$; var pos = $('h2:contains(Reviews)'); if (!pos.length) return; $.get(window.location + '/stats', function (data) { var link = $('a[name=members]', $(data).children()); if (!link) return; var next = link.nextAll(); pos.before(link).before(next); if (next.length == 1) pos.before($('<div style="margin:10px 0"/>').append('No users found with this Anime in their list.')).before('<br/>'); }); })();