https://github.com/zhibirc/msgpack-unpacker-extension
Unpacks MessagePack payloads into JSON inside DevTools.
https://github.com/zhibirc/msgpack-unpacker-extension
Last synced: 8 months ago
JSON representation
Unpacks MessagePack payloads into JSON inside DevTools.
- Host: GitHub
- URL: https://github.com/zhibirc/msgpack-unpacker-extension
- Owner: zhibirc
- License: mit
- Created: 2025-02-09T00:07:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-09T00:33:41.000Z (over 1 year ago)
- Last Synced: 2025-02-09T01:24:36.467Z (over 1 year ago)
- Language: JavaScript
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MessagePack DevTools Unpacker



Unpacks MessagePack payloads into JSON inside DevTools.
## Overview
[MessagePack](https://msgpack.org/) is the incredible alternative for serializing data in network transmissions.
However, it has one significant drawback in compare with widely used and familiar JSON format -- its readability by humans.
This extension makes an attempt to compensate this inconvenience by unpacking MessagePack-decoded payloads to the regular JSON, and displaying it into separate DevTools tab.
## Usage
- Clone this repository.
- Load the whole directory in Chrome as an [unpacked extension](https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world#load-unpacked).
- Open DevTools and click the **MsgPack Unpacker** tab.
- Open any web page served MsgPack payloads, the decoded JSON will automatically be displayed in the panel.
## Contributing
Pull requests which aim to enhance, improve or fix something are highly welcome.