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
官方網址 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
    }
}