您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add a link/button to open the user's profile on anime graph
当前为
// ==UserScript== // @name Go to Graph button // @namespace MALgraphGo // @version 1.1 // @description Add a link/button to open the user's profile on anime graph // @author Samu // @match https://myanimelist.net/profile/* // @grant GM_xmlhttpRequest // ==/UserScript== (function() { 'use strict'; var url = document.location.href; var matchUsername = url.match(/\/profile\/([a-zA-Z0-9_-]{2,16})/); var username = matchUsername && matchUsername[1] || ""; var url = "https://graph.anime.plus/" + username; var graphButton = document.createElement("a"); var userButtons = document.querySelector("#content .user-profile .user-button"); /*if (matchUsername && typeof matchUsername[1] === "string") { username = matchUsername[1] }*/ graphButton.href = url; graphButton.className = "btn-profile-submit"; graphButton.innerText = "Graph"; graphButton.setAttribute("style", "width: 100%;margin-top: 4px;"); graphButton.setAttribute("target", "_blank"); userButtons.appendChild(graphButton); graphButton.addEventListener("click", function() { GM_xmlhttpRequest({ method: "GET", url: url + "/queue-add" }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址