Greasy Fork

Greasy Fork is available in English.

RoPro Badge Changer

Gives you a random badge on your profile everytime you refresh! Your badge will change in 6 seconds. (RoPro extension needed)

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         RoPro Badge Changer
// @version      pre-alpha-0.9.9
// @description  Gives you a random badge on your profile everytime you refresh! Your badge will change in 6 seconds. (RoPro extension needed)
// @author       @focat on roblox
// @match        http://*.roblox.com/users/*
// @icon         https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://ropro.io/images/ultra_icon_shadow.png&size=64
// @grant        none
// @license      Apache 2.0
// @namespace    https://replit.com/@Code1Tech
// ==/UserScript==

function changeBadge() {
    var badge = "https://ropro.io/images/ultra_icon_shadow.png";
    document.getElementsByClassName("ropro-profile-icon")[0].src=badge;
}

(function() {
    'use strict';
    setTimeout(changeBadge, 6000);
})();