base64 to binary

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

Co to jest base64 to binary?

base64 to binary to rozszerzenie Chrome opracowane przez Anton Sergeyev, a jego główną funkcją jest „Decodes base64 string to and from array of bytes or ASCII string”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia base64 to binary

Pobierz pliki rozszerzeń base64 to binary w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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=                    

Podstawowe informacje o rozszerzeniu

Nazwa base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
Oficjalny URL https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Opis Decodes base64 string to and from array of bytes or ASCII string
Rozmiar pliku 24.75 KB
Liczba instalacji 55
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-07-16
Data Publikacji 2017-07-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Anton Sergeyev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/xapon/base64-binary-chrome-ext
Adres URL Strony Pomocy https://github.com/xapon/base64-binary-chrome-ext/issues
Obsługiwane Języki 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"
    }
}