How to Hide Your Steam Profile Badge (2025 Guide)
This guide explains how to remove the "Featured Badge" from your Steam profile using a simple browser console script.
๐ Prerequisites
- A web browser (Chrome, Edge, Firefox, etc.)
- You must be logged into your Steam account on the browser.
๐ Instructions
Step 1: Navigate to the Badge Settings
Go to your Steam Profile, click Edit Profile, and select the Featured Badge tab.
Quick Link: https://steamcommunity.com/my/edit/favoritebadge
Step 2: Open the Developer Console
Once on the page, open your browser's developer tools:
- Windows/Linux: Press
F12orCtrl+Shift+J - Mac: Press
Cmd+Opt+J
Note: If your browser warns you about "Self-XSS," type allow pasting and hit Enter to enable the console.
Step 3: Run the Script
Copy the code below, paste it into the console, and press Enter:
var access_token = $J("[data-loyaltystore]").data("loyaltystore").webapi_token;
SetLovelyBadge(access_token);
function SetLovelyBadge(access_token) {
$J.post(
'[https://api.steampowered.com/IPlayerService/SetFavoriteBadge/v1](https://api.steampowered.com/IPlayerService/SetFavoriteBadge/v1)?',
{
access_token: access_token,
badgeid: 0
}
);
}
