您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Generates player profile clicklist
当前为
// ==UserScript== // @name YouTube NO ADS // @namespace Violentmonkey Scripts // @match https://pokeheroes.com/userprofile* // @grant none // @version 1.0.0 // @author - // @description Generates player profile clicklist // @license MIT // ==/UserScript== (function(){ 'use strict' let list = "https://pokeheroes.com/pokemon_lite?cl_type=custom&" // id[]= {ID} & $('a[href^="pokemon.php?id="]').each((index, data) => { data = /\d+/.exec(data.href) list += `id[]=${data}&` }) $('h2:contains("Party")').parent().prepend(`<center><a href="${list}">Clicklist Link</a></center>`) })()