Keen Debugger

Output Keen IO analytics data in the JavaScript console

O que é Keen Debugger?

Keen Debugger é uma extensão do Chrome desenvolvida por lisaovermyr, e sua principal característica é "Output Keen IO analytics data in the JavaScript console".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Keen Debugger

Baixe arquivos de extensão Keen Debugger 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

                        Want to make sure the data you're sending to Keen IO is correct? Installing this extension will allow you to view collection name and data for every event sent to Keen IO directly in your dev tools console.                    

Informações Básicas da Extensão

Nome Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
URL Oficial https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Descrição Output Keen IO analytics data in the JavaScript console
Tamanho do Arquivo 12.25 KB
Contagem de Instalações 102
Versão Atual 1.5
Última Atualização 2016-03-10
Data de Publicação 2016-03-10
Desenvolvedor lisaovermyr
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Output Keen IO analytics data in the JavaScript console",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "log-keen-requests.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "name": "Keen Debugger",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "tabs",
        "storage"
    ],
    "manifest_version": 2,
    "version": "1.5",
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}