Keen Debugger

Output Keen IO analytics data in the JavaScript console

What is Keen Debugger?

Keen Debugger is a Chrome extension developed by lisaovermyr, and its main feature is "Output Keen IO analytics data in the JavaScript console".

Extension Screenshots

screenshot
screenshot

Download Keen Debugger Extension CRX File

Download Keen Debugger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
Official URL https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Description Output Keen IO analytics data in the JavaScript console
File Size 12.25 KB
Installation Count 102
Current Version 1.5
Last Updated 2016-03-10
Publish Date 2016-03-10
Developer lisaovermyr
Payment Type free
Supported Languages 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
    }
}