您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes online friends appear on top of the friend list
// ==UserScript== // @name Bonk online friends on top // @version 1.0 // @author Salama // @description Makes online friends appear on top of the friend list // @match https://*.bonk.io/gameframe-release.html // @run-at document-end // @grant none // @license MIT // @supportURL https://discord.gg/Dj6usq7ww3 // @namespace https://greasyfork.org/users/824888 // ==/UserScript== let friends = document.getElementById("friends_scrollcontainer"); friends.insertBefore(document.getElementById("friends_online_table"), friends.children[0]); friends.insertBefore(document.getElementById("friends_title_online"), friends.children[0]); console.log("Made online friends appear on top of the friend list")