DPlay Inventory
DPlay Inventory
DPlay Inventory란 무엇입니까?
DPlay Inventory은(는) DPlay Company에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DPlay Inventory"입니다.
확장 프로그램 스크린샷
DPlay Inventory 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
DPlay Inventory is an application managing the games, their items and assets purchased in DPlay. It is required to play the web games integrated with DPlay. [Features] • You can manage the games you bought in DPlay Store. • You can manage the items in-game purchased in the games integrated with DPlay. • You can manage DPlay Coin, which is the currency used in DPlay, d and Ether. • You can change your guild’s name and your introduction. • You can create or edit your guild. Source code: https://github.com/DPlayGames/DPlayInventory Inquiry: [email protected]
확장 프로그램 기본 정보
이름 | |
ID | pfniidaegjlmhanjmilfjlcmfdeoigmf |
공식 URL | https://chromewebstore.google.com/detail/dplay-inventory/pfniidaegjlmhanjmilfjlcmfdeoigmf |
설명 | DPlay Inventory |
파일 크기 | 10.21 MB |
설치 횟수 | 71 |
현재 버전 | 1.3 |
최근 업데이트 | 2019-10-15 |
출시 날짜 | 2019-10-15 |
개발자 | DPlay Company |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DPlay Inventory", "version": "1.3", "description": "DPlay Inventory", "browser_action": { "default_popup": "index.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "BACKGROUND.js" ] }, "content_scripts": [ { "js": [ "CONTENT.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": true } ] } |