base64 to binary

Decodes base64 string to and from array of bytes or ASCII string

Apa itu base64 to binary?

base64 to binary adalah ekstensi Chrome yang dikembangkan oleh Anton Sergeyev, dan fitur utamanya adalah "Decodes base64 string to and from array of bytes or ASCII string".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi base64 to binary

Unduh file ekstensi base64 to binary dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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=                    

Informasi Dasar Ekstensi

Nama base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
URL Resmi https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Deskripsi Decodes base64 string to and from array of bytes or ASCII string
Ukuran File 24.75 KB
Jumlah Instalasi 55
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-07-16
Tanggal Publikasi 2017-07-15
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Anton Sergeyev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/xapon/base64-binary-chrome-ext
URL Halaman Bantuan https://github.com/xapon/base64-binary-chrome-ext/issues
Bahasa yang Didukung 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"
    }
}