Keen Debugger

Output Keen IO analytics data in the JavaScript console

Vad är Keen Debugger?

Keen Debugger är en Chrome-tillägg utvecklad av lisaovermyr, och dess huvudfunktion är "Output Keen IO analytics data in the JavaScript console".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Keen Debugger-förlängningens CRX-fil

Ladda ner Keen Debugger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
Officiell webbadress https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Beskrivning Output Keen IO analytics data in the JavaScript console
Filstorlek 12.25 KB
Antal Installationer 102
Aktuell Version 1.5
Senast Uppdaterad 2016-03-10
Publiceringsdatum 2016-03-10
Utvecklare lisaovermyr
Betalningssätt free
Stödda Språk 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
    }
}