Greasy Fork is available in English.
This userscript turns the person's username on their profile into their trade link.
当前为
// ==UserScript==
// @name Roblox Trade Link on Username
// @namespace http://tampermonkey.net/
// @version 1.0
// @description This userscript turns the person's username on their profile into their trade link.
// @author awesomerly
// @match *://*.roblox.com/users/*/*
// @grant none
// ==/UserScript==
var thingy = document.getElementsByClassName("profile-name")[0]
var url = window.location.href
var userId = url.split("/")[4]
thingy.innerHTML = `<a href = 'https://www.roblox.com/Trade/TradeWindow.aspx?TradePartnerID=${userId}' target='_blank'>` + thingy.innerHTML + "</a>";