Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Co to jest Steam Profile Modifier?
Steam Profile Modifier to rozszerzenie Chrome opracowane przez 16ROCK, a jego główną funkcją jest „The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Steam Profile Modifier
Pobierz pliki rozszerzeń Steam Profile Modifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
Oficjalny URL | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Opis | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Rozmiar pliku | 469 KB |
Liczba instalacji | 1,661 |
Aktualna Wersja | 2.1.2 |
Ostatnia Aktualizacja | 2023-12-22 |
Data Publikacji | 2022-10-12 |
Ocena | 4.00/5 Łącznie 13 Oceny |
Deweloper | 16ROCK |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://sites.google.com/view/boostercreator/privacy-policy |
Obsługiwane Języki | 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" ] } ] } |