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은(는) 16ROCK에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Steam Profile Modifier extension enables you to customize your Steam profile by previewing items from the points store without…"입니다.
확장 프로그램 스크린샷
Steam Profile Modifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
개인정보 보호 정책 페이지 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" ] } ] } |