Keen Debugger
Output Keen IO analytics data in the JavaScript console
Wat is Keen Debugger?
Keen Debugger is een Chrome-extensie ontwikkeld door lisaovermyr, en de belangrijkste functie is "Output Keen IO analytics data in the JavaScript console".
Extensie Screenshots
Download het CRX-bestand van de extensie Keen Debugger
Download Keen Debugger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Keen Debugger |
ID | jaanimjmcilehhddhdalaplgkebjbmfj |
Officiële URL | https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj |
Beschrijving | Output Keen IO analytics data in the JavaScript console |
Bestandsgrootte | 12.25 KB |
Aantal Installaties | 102 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2016-03-10 |
Publicatiedatum | 2016-03-10 |
Ontwikkelaar | lisaovermyr |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |