Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Hvad er Steam Profile Modifier?
Steam Profile Modifier er en Chrome-udvidelse udviklet af 16ROCK, og dens hovedfunktion er "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Udvidelsesskærmbilleder
Download Steam Profile Modifier-udvidelses-CRX-fil
Download Steam Profile Modifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without spending points. It allows you to try various combinations and make sure your profile looks perfect before making any purchases.
Grundlæggende oplysninger om udvidelsen
Navn | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
Officiel URL | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Beskrivelse | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Filstørrelse | 469 KB |
Antal Installationer | 1,661 |
Nuværende Version | 2.1.2 |
Senest Opdateret | 2023-12-22 |
Udgivelsesdato | 2022-10-12 |
Bedømmelse | 4.00/5 Samlet 13 Bedømmelser |
Udvikler | 16ROCK |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://sites.google.com/view/boostercreator/privacy-policy |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Profile Modifier", "version": "2.1.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "icons": { "16": "icoSPM16.png", "48": "icoSPM48.png", "128": "icoSPM128.png" }, "action": { "default_icon": "icoSPM128.png", "default_title": "Open profile", "default_popup": "popup.html" }, "short_name": "SPM", "web_accessible_resources": [ { "resources": [ "json\/*", "svg\/*" ], "matches": [ "https:\/\/steamcommunity.com\/*" ] } ], "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/steamcommunity.com\/id\/*", "https:\/\/steamcommunity.com\/profiles\/*" ], "run_at": "document_start", "css": [ "style.css" ], "js": [ "script.js" ] } ] } |