CotLI Logger Tool
Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.
CotLI Logger Tool란 무엇입니까?
CotLI Logger Tool은(는) Fly에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished."입니다.
확장 프로그램 스크린샷
CotLI Logger Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CotLI Calculator Data Parser. Read traffic from the game and show in on the kongregate page allowing user to pass it where he needs. Also catches when game missions are completed, store this information in browser cache and show cooldown times for main missions,
확장 프로그램 기본 정보
이름 | CotLI Logger Tool |
ID | jceejofnbfkohmdfojdccgcfgmamlagi |
공식 URL | https://chromewebstore.google.com/detail/cotli-logger-tool/jceejofnbfkohmdfojdccgcfgmamlagi |
설명 | Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished. |
파일 크기 | 48.87 KB |
설치 횟수 | 17 |
현재 버전 | 1.2.1.1 |
최근 업데이트 | 2017-05-31 |
출시 날짜 | 2017-05-31 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Fly |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CotLI Logger Tool", "description": "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.", "version": "1.2.1.1", "permissions": [ "storage", "webRequest", "unlimitedStorage", "*:\/\/*.kongregate.com\/games\/Codename_Enter\/crusaders-of-the-lost-idols*", "http:\/\/*.djartsgames.ca\/~idle\/post.php*", "http:\/\/idlemaster.djartsgames.ca\/~idle\/?DO_NOT_SHARE_THIS_LINK=1*", "http:\/\/cr.pkodb.com\/*" ], "background": { "scripts": [ "bg.js" ] }, "options_page": "options.html", "web_accessible_resources": [ "options.html" ], "content_scripts": [ { "matches": [ "*:\/\/*.kongregate.com\/games\/Codename_Enter\/crusaders-of-the-lost-idols*" ], "js": [ "js\/dataManager.js", "js\/timerBuilder.js", "js\/kong.js" ] }, { "matches": [ "http:\/\/idlemaster.djartsgames.ca\/~idle\/?DO_NOT_SHARE_THIS_LINK=1*" ], "js": [ "js\/dataManager.js", "js\/timerBuilder.js", "js\/djarts.js" ] } ] } |