Keen Debugger

Output Keen IO analytics data in the JavaScript console

Keen Debuggerとは何ですか?

Keen Debuggerはlisaovermyrによって開発されたChromeの拡張機能で、その主な機能は「Output Keen IO analytics data in the JavaScript console」です。

拡張機能のスクリーンショット

screenshot
screenshot

Keen Debugger拡張機能のCRXファイルをダウンロード

Keen Debugger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
公式URL https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
説明 Output Keen IO analytics data in the JavaScript console
ファイルサイズ 12.25 KB
インストール数 102
現在のバージョン 1.5
最終更新日 2016-03-10
公開日 2016-03-10
開発者 lisaovermyr
支払い方法 free
対応言語 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
    }
}