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”。
扩展截图
下载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 |
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 } } |