您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
a small script for Blockchain Cuties to provide a new (sortable, searchable) list of any player's cuties
// ==UserScript== // @name Blockchain Cuties Advanced Player's Cuties list // @version 0.31 // @description a small script for Blockchain Cuties to provide a new (sortable, searchable) list of any player's cuties // @author VeRychard <[email protected]> // @icon http://hyperfocus.net/darkcuties_logo.png // @match https://blockchaincuties.co/pet/* // @match https://blockchaincuties.co/leaderboard* // @match https://blockchaincuties.com/pet/* // @match https://blockchaincuties.com/leaderboard* // @grant none // @namespace https://greasyfork.org/users/193828 // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { setTimeout( function() { $('.pet_header_owner-name, .pet_header_owner-imageLink, .board-item-user a').each(function() {this.href = this.href.replace(/player\//,"pets/1?search=owner:"); }); }, 2500); }); })();