Keen Debugger

Output Keen IO analytics data in the JavaScript console

Co to jest Keen Debugger?

Keen Debugger to rozszerzenie Chrome opracowane przez lisaovermyr, a jego główną funkcją jest „Output Keen IO analytics data in the JavaScript console”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Keen Debugger

Pobierz pliki rozszerzeń Keen Debugger w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Keen Debugger Keen Debugger
ID jaanimjmcilehhddhdalaplgkebjbmfj
Oficjalny URL https://chromewebstore.google.com/detail/keen-debugger/jaanimjmcilehhddhdalaplgkebjbmfj
Opis Output Keen IO analytics data in the JavaScript console
Rozmiar pliku 12.25 KB
Liczba instalacji 102
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2016-03-10
Data Publikacji 2016-03-10
Deweloper lisaovermyr
Typ Płatności free
Obsługiwane Języki 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
    }
}