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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Keen Debugger
قم بتنزيل ملفات الامتداد Keen Debugger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } } |