您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a shared rainbow effect to the name, level, and the word 'level' in Bonk.io, visible to other users with this script.
当前为
// ==UserScript== // @name Bonk.io RainbowStyle // @namespace http://tampermonkey.net/ // @version 12.7.6 // @match *://bonk.io/* // @grant GM_addStyle // @description Adds a shared rainbow effect to the name, level, and the word 'level' in Bonk.io, visible to other users with this script. // ==/UserScript== // Example: Adding a rainbow effect to the player's name and level GM_addStyle(` #player-name, #player-level, .level-text { color: #ff0000; animation: rainbow 3s infinite; } @keyframes rainbow { 0% { color: red; } 14% { color: orange; } 28% { color: yellow; } 42% { color: green; } 57% { color: blue; } 71% { color: indigo; } 85% { color: violet; } 100% { color: red; } } `);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址