postMessage debugger
This extension prints messages sent with postMessage to the console
What is postMessage debugger?
postMessage debugger is a Chrome extension developed by wille.eklund, and its main feature is "This extension prints messages sent with postMessage to the console".
Extension Screenshots
Download postMessage debugger Extension CRX File
Download postMessage debugger 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 chrome extension prints messages sent with postMessage to the console for debugging.
Extension Basic Information
Name | postMessage debugger |
ID | ibnkhbkkelpcgofjlfnlanbigclpldad |
Official URL | https://chromewebstore.google.com/detail/postmessage-debugger/ibnkhbkkelpcgofjlfnlanbigclpldad |
Description | This extension prints messages sent with postMessage to the console |
File Size | 3.61 KB |
Installation Count | 4,982 |
Current Version | 0.2.0 |
Last Updated | 2018-11-28 |
Publish Date | 2018-11-23 |
Rating | 4.58/5 Total 12 Ratings |
Developer | wille.eklund |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "postMessage debugger", "description": "This extension prints messages sent with postMessage to the console", "version": "0.2.0", "browser_action": { "name": "Debug postMessages" }, "content_scripts": [ { "js": [ "js\/postMessage-debugger.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true } ] } |