Steam Profile Modifier
The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…
Τι είναι το Steam Profile Modifier;
Το Steam Profile Modifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 16ROCK, και η κύρια λειτουργία του είναι "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Steam Profile Modifier
Λήψη αρχείων επέκτασης Steam Profile Modifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Steam Profile Modifier |
ID | lfjdaphbejfpncjfebkbcganmkinhhfl |
Επίσημο URL | https://chromewebstore.google.com/detail/steam-profile-modifier/lfjdaphbejfpncjfebkbcganmkinhhfl |
Περιγραφή | The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without… |
Μέγεθος Αρχείου | 469 KB |
Αριθμός Εγκαταστάσεων | 1,661 |
Τρέχουσα Έκδοση | 2.1.2 |
Τελευταία Ενημέρωση | 2023-12-22 |
Ημερομηνία Δημοσίευσης | 2022-10-12 |
Αξιολόγηση | 4.00/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | 16ROCK |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://sites.google.com/view/boostercreator/privacy-policy |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |