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'est-ce que CotLI Logger Tool ?

CotLI Logger Tool est une extension Chrome développée par Fly, et sa fonction principale est "Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension CotLI Logger Tool

Téléchargez les fichiers d'extension CotLI Logger Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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,                    

Informations de Base sur l'Extension

Nom CotLI Logger Tool CotLI Logger Tool
ID jceejofnbfkohmdfojdccgcfgmamlagi
URL Officiel https://chromewebstore.google.com/detail/cotli-logger-tool/jceejofnbfkohmdfojdccgcfgmamlagi
Description Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.
Taille du Fichier 48.87 KB
Nombre d'Installations 17
Version Actuelle 1.2.1.1
Dernière Mise à Jour 2017-05-31
Date de Publication 2017-05-31
Évaluation 5.00/5 Total 3 Évaluations
Développeur Fly
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}