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 là gì?
CotLI Logger Tool là một tiện ích mở rộng Chrome được phát triển bởi Fly, và tính năng chính của nó là "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CotLI Logger Tool
Tải xuống các tệp mở rộng CotLI Logger Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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,
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CotLI Logger Tool |
ID | jceejofnbfkohmdfojdccgcfgmamlagi |
URL Chính Thức | https://chromewebstore.google.com/detail/cotli-logger-tool/jceejofnbfkohmdfojdccgcfgmamlagi |
Mô tả | Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished. |
Kích Thước Tệp | 48.87 KB |
Số Lần Cài Đặt | 17 |
Phiên Bản Hiện Tại | 1.2.1.1 |
Cập Nhật Lần Cuối | 2017-05-31 |
Ngày Phát Hành | 2017-05-31 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Fly |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |