Keen Debugger

Output Keen IO analytics data in the JavaScript console

Qu'est-ce que Keen Debugger ?

Keen Debugger est une extension Chrome développée par lisaovermyr, et sa fonction principale est "Output Keen IO analytics data in the JavaScript console".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Keen Debugger

Téléchargez les fichiers d'extension Keen Debugger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
URL Officiel https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Description Output Keen IO analytics data in the JavaScript console
Taille du Fichier 12.25 KB
Nombre d'Installations 102
Version Actuelle 1.5
Dernière Mise à Jour 2016-03-10
Date de Publication 2016-03-10
Développeur lisaovermyr
Type de Paiement free
Langues Prises en Charge 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
    }
}