DOM Events Dispatcher

This extension allows dispatching events on selected elements

What is DOM Events Dispatcher?

DOM Events Dispatcher is a Chrome extension developed by mrfrankel, and its main feature is "This extension allows dispatching events on selected elements".

Extension Screenshots

screenshot
screenshot

Download DOM Events Dispatcher Extension CRX File

Download DOM Events Dispatcher 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

                        This extension allows dispatching events on selected elements                    

Extension Basic Information

Name DOM Events Dispatcher DOM Events Dispatcher
ID mjghdkodmdajgnihppghflegjhemfjek
Official URL https://chromewebstore.google.com/detail/dom-events-dispatcher/mjghdkodmdajgnihppghflegjhemfjek
Description This extension allows dispatching events on selected elements
File Size 326 KB
Installation Count 56
Current Version 0.0.2
Last Updated 2019-02-07
Publish Date 2019-02-03
Rating 5.00/5 Total 1 Ratings
Developer mrfrankel
Email [email protected]
Payment Type free
Extension Website https://github.com/MrFrankel/Chrome-Devtools-Extension-Event-Dispatcher
Help Page URL https://github.com/MrFrankel/Chrome-Devtools-Extension-Event-Dispatcher
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM Events Dispatcher",
    "short_name": "DOM Events Dispatcher",
    "description": "This extension allows dispatching events on selected elements",
    "version": "0.0.2",
    "devtools_page": ".\/src\/devtools.html",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}