base64 to binary
Decodes base64 string to and from array of bytes or ASCII string
什么是base64 to binary?
base64 to binary是由Anton Sergeyev开发的Chrome扩展程序,该扩展的主要功能是“Decodes base64 string to and from array of bytes or ASCII string”。
扩展截图
下载base64 to binary扩展crx文件
下载base64 to binary扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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=
扩展基本信息
名称 | base64 to binary |
ID | ajpoogneninennkhhnbmflmjjcagabpb |
官方URL | https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb |
简介 | Decodes base64 string to and from array of bytes or ASCII string |
文件大小 | 24.75 KB |
安装次数 | 55 |
当前版本 | 0.1 |
更新时间 | 2017-07-16 |
上架时间 | 2017-07-15 |
评分 | 5.00/5 共1次评分 |
开发者 | Anton Sergeyev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/xapon/base64-binary-chrome-ext |
帮助页面URL | https://github.com/xapon/base64-binary-chrome-ext/issues |
支持的语言 | 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" } } |