Keen Debugger
Output Keen IO analytics data in the JavaScript console
Apa itu Keen Debugger?
Keen Debugger adalah ekstensi Chrome yang dikembangkan oleh lisaovermyr, dan fitur utamanya adalah "Output Keen IO analytics data in the JavaScript console".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Keen Debugger
Unduh file ekstensi Keen Debugger dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Keen Debugger |
ID | jaanimjmcilehhddhdalaplgkebjbmfj |
URL Resmi | https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj |
Deskripsi | Output Keen IO analytics data in the JavaScript console |
Ukuran File | 12.25 KB |
Jumlah Instalasi | 102 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2016-03-10 |
Tanggal Publikasi | 2016-03-10 |
Pengembang | lisaovermyr |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |