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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fly และคุณลักษณะหลักของมันคือ "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CotLI Logger Tool
ดาวน์โหลดไฟล์ส่วนขยาย CotLI Logger Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |