您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Get a random anime to watch from your list.
// ==UserScript== // @name MyAnimeList Watch Next // @namespace http://tampermonkey.com/ // @version 1.1 // @description Get a random anime to watch from your list. // @author Nekosuki // @include /^https://myanimelist.net/animelist/.+\?status=6$/ // @grant none // @run-at document-idle // ==/UserScript== (function($) { 'use strict'; $(document).ready(() => { const ptw = $(".list-item .list-table-data > .plantowatch").parent().children(".title").children("a.link"); const wn = ptw[Math.floor(Math.random() * ptw.length)]; $("div.list-block").prepend("<div class=\"list-unit plantowatch\"><div style=\"margin-bottom: 15px\" class=\"list-status-title\"><span class=\"text\">Watch next: <i><a style=\"color:white\" href=\"" + wn.href + "\">" + wn.text + "</a></i></span></div></div>"); }); })(window.jQuery);