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.

O que é CotLI Logger Tool?

CotLI Logger Tool é uma extensão do Chrome desenvolvida por Fly, e sua principal característica é "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 Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão CotLI Logger Tool

Baixe arquivos de extensão CotLI Logger Tool no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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,                    

Informações Básicas da Extensão

Nome CotLI Logger Tool CotLI Logger Tool
ID jceejofnbfkohmdfojdccgcfgmamlagi
URL Oficial https://chromewebstore.google.com/detail/cotli-logger-tool/jceejofnbfkohmdfojdccgcfgmamlagi
Descrição Collect user data and show it in a format for calculator use. Also log and show mission cooldown timers when missions are finished.
Tamanho do Arquivo 48.87 KB
Contagem de Instalações 17
Versão Atual 1.2.1.1
Última Atualização 2017-05-31
Data de Publicação 2017-05-31
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Fly
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}