Robloxify

Make bopimo robloxifyed.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Robloxify
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Make bopimo robloxifyed.
// @author       Teemsploit
// @match        https://www.bopimo.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    function resetLinkText() {
        const links = document.querySelectorAll('a');
        links.forEach((link) => {
            if (link.textContent) {
                link.textContent = link.textContent
                    .replace(/coin/gi, 'robux')
                    .replace(/level/gi, 'game')
                    .replace(/bopimo/gi, 'roblox')
                    .replace(/user/gi, 'player')
                    .replace(/lobby/gi, 'game hub')
                    .replace(/shop/gi, 'store')
                    .replace(/skin/gi, 'avatar')
                    .replace(/Forums/gi, 'Community')
                    .replace(/Users/gi, 'Players')
                    .replace(/Download/gi, 'Install')
                    .replace(/Upgrade/gi, 'Premium');
            }
        });
    }

    resetLinkText();
})();