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" ] } ] } |