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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |