base64 to binary
Decodes base64 string to and from array of bytes or ASCII string
What is base64 to binary?
base64 to binary is a Chrome extension developed by Anton Sergeyev, and its main feature is "Decodes base64 string to and from array of bytes or ASCII string".
Extension Screenshots
Download base64 to binary Extension CRX File
Download base64 to binary 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
Decodes base64 string to and from array of bytes or ASCII string. Suitable for working with binary data that cannot be represented as ASCII string. Most similar extensions and online tools only try to work with ASCII and display some gibberish when non-printable characters are encountered. Decode examples: In: DwCgAAAkAAAeAAA= Out: 15 0 160 0 0 36 0 0 30 0 0 Encode examples: In: hello world Out: aGVsbG8gd29ybGQ=
Extension Basic Information
Name | base64 to binary |
ID | ajpoogneninennkhhnbmflmjjcagabpb |
Official URL | https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb |
Description | Decodes base64 string to and from array of bytes or ASCII string |
File Size | 24.75 KB |
Installation Count | 55 |
Current Version | 0.1 |
Last Updated | 2017-07-16 |
Publish Date | 2017-07-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Anton Sergeyev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xapon/base64-binary-chrome-ext |
Help Page URL | https://github.com/xapon/base64-binary-chrome-ext/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "base64 to binary", "version": "0.1", "manifest_version": 2, "author": "Anton Sergeyev", "description": "Decodes base64 string to and from array of bytes or ASCII string", "homepage_url": "https:\/\/github.com\/xapon\/base64-binary-chrome-ext", "icons": { "128": "icons\/icon128.png", "64": "icons\/icon64.png" }, "browser_action": { "default_icon": "icons\/icon64.png", "default_title": "base64 to binary", "default_popup": "popup.html" } } |