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 |
官方網址 | 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" } } |