Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Was ist Steam Profile Modifier?
Steam Profile Modifier ist eine Chrome-Erweiterung, die von 16ROCK entwickelt wurde, und ihr Hauptmerkmal ist "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Erweiterungsscreenshots
Steam Profile Modifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie Steam Profile Modifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
Offizielle URL | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Beschreibung | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Dateigröße | 469 KB |
Installationsanzahl | 1,661 |
Aktuelle Version | 2.1.2 |
Letztes Update | 2023-12-22 |
Veröffentlichungsdatum | 2022-10-12 |
Bewertung | 4.00/5 Insgesamt 13 Bewertungen |
Entwickler | 16ROCK |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://sites.google.com/view/boostercreator/privacy-policy |
Unterstützte Sprachen | 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" ] } ] } |