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
官方網址 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"
            ]
        }
    ]
}