Keen Debugger

Output Keen IO analytics data in the JavaScript console

Cos'è Keen Debugger?

Keen Debugger è un'estensione di Chrome sviluppata da lisaovermyr, e la sua funzione principale è "Output Keen IO analytics data in the JavaScript console".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Keen Debugger

Scarica i file di estensione Keen Debugger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
URL Ufficiale https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Descrizione Output Keen IO analytics data in the JavaScript console
Dimensione del File 12.25 KB
Conteggio Installazioni 102
Versione Corrente 1.5
Ultimo Aggiornamento 2016-03-10
Data di Pubblicazione 2016-03-10
Sviluppatore lisaovermyr
Tipo di Pagamento free
Lingue Supportate 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
    }
}