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.
¿Qué es CotLI Logger Tool?
CotLI Logger Tool es una extensión de Chrome desarrollada por Fly, y su función principal es "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CotLI Logger Tool
Descarga archivos de extensión CotLI Logger Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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,
Información Básica de la Extensión
Nombre | CotLI Logger Tool |
ID | jceejofnbfkohmdfojdccgcfgmamlagi |
URL Oficial | https://chromewebstore.google.com/detail/cotli-logger-tool/jceejofnbfkohmdfojdccgcfgmamlagi |
Descripción | Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished. |
Tamaño del Archivo | 48.87 KB |
Cantidad de Instalaciones | 17 |
Versión Actual | 1.2.1.1 |
Última Actualización | 2017-05-31 |
Fecha de Publicación | 2017-05-31 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Fly |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |