Event Logger

Simple developer tool extension for creating macros and exporting them.

What is Event Logger?

Event Logger is a Chrome extension developed by emrekabakci, and its main feature is "Simple developer tool extension for creating macros and exporting them.".

Extension Screenshots

screenshot

Download Event Logger Extension CRX File

Download Event Logger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        It allows you to capture events triggered by Javascript and log them in developer tools. You can easily track events and export them to JSON to save your actions.
It's useful when you're debugging a web application or writing macros. I'm planning to add load feature to the extension so you can easily export events and load them to programmatically trigger same events.                    

Extension Basic Information

Name Event Logger Event Logger
ID ilidkhplmkdomofhjpkdgnapgkaadmhg
Official URL https://chromewebstore.google.com/detail/event-logger/ilidkhplmkdomofhjpkdgnapgkaadmhg
Description Simple developer tool extension for creating macros and exporting them.
File Size 11.06 KB
Installation Count 148
Current Version 0.1
Last Updated 2014-12-16
Publish Date 2014-12-16
Rating 1.00/5 Total 2 Ratings
Developer emrekabakci
Payment Type free
Extension Website http://github.com/buremba
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Event Logger",
    "version": "0.1",
    "description": "Simple developer tool extension for creating macros and exporting them.",
    "devtools_page": "chrome-preprocessor.html",
    "manifest_version": 2,
    "web_accessible_resources": [
        "*"
    ],
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "page": "background.html"
    }
}