Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
O que é Steam Profile Modifier?
Steam Profile Modifier é uma extensão do Chrome desenvolvida por 16ROCK, e sua principal característica é "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Steam Profile Modifier
Baixe arquivos de extensão Steam Profile Modifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
URL Oficial | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Descrição | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Tamanho do Arquivo | 469 KB |
Contagem de Instalações | 1,661 |
Versão Atual | 2.1.2 |
Última Atualização | 2023-12-22 |
Data de Publicação | 2022-10-12 |
Classificação | 4.00/5 Total de 13 Avaliações |
Desenvolvedor | 16ROCK |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://sites.google.com/view/boostercreator/privacy-policy |
Idiomas Suportados | 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" ] } ] } |