Dota 2 Lounge Helper
Helper extension for Dota 2 Lounge.
Dota 2 Lounge Helper란 무엇입니까?
Dota 2 Lounge Helper은(는) Ryan Li에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helper extension for Dota 2 Lounge."입니다.
확장 프로그램 스크린샷
Dota 2 Lounge Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Dota 2 Lounge Helper adds some features to the Dota 2 Lounge website. Features: * Detailed bet statistics. * Display item value as listed in Community Market. Github: https://github.com/ryanli/d2lhelper
확장 프로그램 기본 정보
이름 | ![]() |
ID | ljmpblpndedodbmceeghpahabeppemed |
공식 URL | https://chrome.google.com/webstore/detail/dota-2-lounge-helper/ljmpblpndedodbmceeghpahabeppemed |
설명 | Helper extension for Dota 2 Lounge. |
파일 크기 | 100 KB |
설치 횟수 | 1,413 |
현재 버전 | 0.5.2 |
최근 업데이트 | 2016-08-16 |
출시 날짜 | 2016-08-16 |
평점 | 4.41/5 총 162 개의 평점 |
개발자 | Ryan Li |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ryanli/d2lhelper |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dota 2 Lounge Helper", "description": "Helper extension for Dota 2 Lounge.", "version": "0.5.2", "content_scripts": [ { "matches": [ "http:\/\/*.dota2lounge.com\/*" ], "js": [ "util.js" ] }, { "matches": [ "http:\/\/*.dota2lounge.com\/myprofile" ], "js": [ "async.js", "jquery-2.1.1.js", "jquery.tablesorter.min.js", "bet-stats.js" ], "css": [ "bet-stats.css" ] }, { "matches": [ "http:\/\/*.dota2lounge.com\/*" ], "js": [ "jquery-2.1.1.js", "item-value.js" ] } ], "permissions": [ "storage", "http:\/\/*.dota2lounge.com\/*", "http:\/\/steamcommunity.com\/market\/*" ] } |