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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |