Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Cos'è Steam Profile Modifier?
Steam Profile Modifier è un'estensione di Chrome sviluppata da 16ROCK, e la sua funzione principale è "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Steam Profile Modifier
Scarica i file di estensione Steam Profile Modifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
URL Ufficiale | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Descrizione | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Dimensione del File | 469 KB |
Conteggio Installazioni | 1,661 |
Versione Corrente | 2.1.2 |
Ultimo Aggiornamento | 2023-12-22 |
Data di Pubblicazione | 2022-10-12 |
Valutazione | 4.00/5 Totale 13 Valutazioni |
Sviluppatore | 16ROCK |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://sites.google.com/view/boostercreator/privacy-policy |
Lingue Supportate | 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" ] } ] } |