base64 to binary

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

Was ist base64 to binary?

base64 to binary ist eine Chrome-Erweiterung, die von Anton Sergeyev entwickelt wurde, und ihr Hauptmerkmal ist "Decodes base64 string to and from array of bytes or ASCII string".

Erweiterungsscreenshots

screenshot

base64 to binary-Erweiterungs-CRX-Datei herunterladen

Laden Sie base64 to binary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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=                    

Grundlegende Informationen zur Erweiterung

Name base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
Offizielle URL https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Beschreibung Decodes base64 string to and from array of bytes or ASCII string
Dateigröße 24.75 KB
Installationsanzahl 55
Aktuelle Version 0.1
Letztes Update 2017-07-16
Veröffentlichungsdatum 2017-07-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Anton Sergeyev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/xapon/base64-binary-chrome-ext
Hilfeseite URL https://github.com/xapon/base64-binary-chrome-ext/issues
Unterstützte Sprachen 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"
    }
}