Keen Debugger

Output Keen IO analytics data in the JavaScript console

Keen Debuggerคืออะไร?

Keen Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lisaovermyr และคุณลักษณะหลักของมันคือ "Output Keen IO analytics data in the JavaScript console"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keen Debugger

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}