您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
29/07/2024, 16:59:21
// ==UserScript== // @name Emi CK+ >> Plushies over Gen 2 Sprites // @namespace Violentmonkey Scripts // @match https://emi.dev/ck+/* // @grant GM_addStyle // @version 1.0 // @author Lynn // @license MIT // @description 29/07/2024, 16:59:21 // ==/UserScript== var script = document.createElement('script'); script.innerHTML = 'function getPokeImage(poke, unownExtra = undefined) { var shiny = poke.name && isShiny(poke) ? "shiny" : "normal";if (poke.name) { poke = poke.name; } if (unownExtra !== undefined && poke == "unown") { poke += ["-b", "-u", "-n", "-n", "-y", "-q", "-t"][unownExtra]; } return \'https://raw.githubusercontent.com/AFalsePrayer/pokemon-plushies/main/raw/\' + poke + \'.png\';}'; document.getElementsByTagName('head')[0].appendChild(script); GM_addStyle(` .calc-team img { height:50px !important; }` );