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.”。

扩展截图

screenshot
screenshot

下载CotLI Logger Tool扩展crx文件

下载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 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"
            ]
        }
    ]
}