Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Wat is Steam Profile Modifier?
Steam Profile Modifier is een Chrome-extensie ontwikkeld door 16ROCK, en de belangrijkste functie is "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Extensie Screenshots
Download het CRX-bestand van de extensie Steam Profile Modifier
Download Steam Profile Modifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
Officiële URL | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Beschrijving | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Bestandsgrootte | 469 KB |
Aantal Installaties | 1,661 |
Huidige Versie | 2.1.2 |
Laatst Bijgewerkt | 2023-12-22 |
Publicatiedatum | 2022-10-12 |
Beoordeling | 4.00/5 Totaal 13 Beoordelingen |
Ontwikkelaar | 16ROCK |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://sites.google.com/view/boostercreator/privacy-policy |
Ondersteunde Talen | 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" ] } ] } |