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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CotLI Logger Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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