postMessage Developer Tools
Provides a dev tools panel to view postMessages for the current page
What is postMessage Developer Tools?
postMessage Developer Tools is a Chrome extension developed by alxHenry Developer, and its main feature is "Provides a dev tools panel to view postMessages for the current page".
Extension Screenshots
Download postMessage Developer Tools Extension CRX File
Download postMessage Developer Tools 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
Provides a dev tools panel to view postMessages for the current page. It aims to provide an easier debugging experience than setting up console logs on your message listeners and filtering in the console for the results. Contributions are welcome to the Github project here: https://github.com/alxHenry/chrome-postMessage-dev-tools
Extension Basic Information
Name | postMessage Developer Tools |
ID | nadeoelabbieobdpmejlfidbhhdicmpa |
Official URL | https://chromewebstore.google.com/detail/postmessage-developer-too/nadeoelabbieobdpmejlfidbhhdicmpa |
Description | Provides a dev tools panel to view postMessages for the current page |
File Size | 15.86 KB |
Installation Count | 2,756 |
Current Version | 1.1.0 |
Last Updated | 2020-09-14 |
Publish Date | 2020-08-02 |
Rating | 5.00/5 Total 3 Ratings |
Developer | alxHenry Developer |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/alxHenry/chrome-postMessage-dev-tools |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "postMessage Developer Tools", "version": "1.1.0", "description": "Provides a dev tools panel to view postMessages for the current page", "devtools_page": ".\/bootstrap.html", "icons": { "16": "chat-16.png", "32": "chat-32.png", "48": "chat-48.png", "128": "chat-128.png" }, "background": { "scripts": [ ".\/src\/background.js" ], "persistent": false }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |