// ==UserScript== // @name Free Verified Badge Roblox // @namespace http://tampermonkey.net/ // @version 1.1 // @description Add a verified badge to the profile page of a specified user ID next to the username, change my id to yours in matchurl // @author Emree.el on instagram // @match https://www.roblox.com/users/564962235/profile // @grant none // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/506079/Free%20Verified%20Badge%20Roblox.user.js // @updateURL https://update.greasyfork.icu/scripts/506079/Free%20Verified%20Badge%20Roblox.meta.js // ==/UserScript== (function() { 'use strict'; // Function to add the verified badge element next to the username on the profile page const addVerifiedBadgeToProfile = () => { // Specify the HTML content for the verified badge const verifiedBadgeHTML = '328744005'; // Find the username element const usernameElement = document.querySelector('.profile-name.text-overflow'); if (usernameElement) { // Create a temporary container to parse the HTML content const tempContainer = document.createElement('div'); tempContainer.innerHTML = verifiedBadgeHTML; // Insert the verified badge element next to the username usernameElement.insertAdjacentElement('afterend', tempContainer.firstChild); } }; // Wait for the profile page to fully load before adding the verified badge element window.addEventListener('load', addVerifiedBadgeToProfile); })();