Keen Debugger

Output Keen IO analytics data in the JavaScript console

Keen Debugger là gì?

Keen Debugger là một tiện ích mở rộng Chrome được phát triển bởi lisaovermyr, và tính năng chính của nó là "Output Keen IO analytics data in the JavaScript console".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Keen Debugger

Tải xuống các tệp mở rộng Keen Debugger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
URL Chính Thức https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Mô tả Output Keen IO analytics data in the JavaScript console
Kích Thước Tệp 12.25 KB
Số Lần Cài Đặt 102
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2016-03-10
Ngày Phát Hành 2016-03-10
Nhà Phát Triển lisaovermyr
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}