โ† All Guides

Hide Your Steam Profile Badge

April 17, 202661 views
00 up ยท 0 down

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 F12 or Ctrl + 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
        }
    );
}
Hide Your Steam Profile Badge โ€” ProfileLab Guides