base64 to binary

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

Wat is base64 to binary?

base64 to binary is een Chrome-extensie ontwikkeld door Anton Sergeyev, en de belangrijkste functie is "Decodes base64 string to and from array of bytes or ASCII string".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie base64 to binary

Download base64 to binary-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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=                    

Basisinformatie over de Extensie

Naam base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
Officiële URL https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Beschrijving Decodes base64 string to and from array of bytes or ASCII string
Bestandsgrootte 24.75 KB
Aantal Installaties 55
Huidige Versie 0.1
Laatst Bijgewerkt 2017-07-16
Publicatiedatum 2017-07-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Anton Sergeyev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/xapon/base64-binary-chrome-ext
Help Pagina-URL https://github.com/xapon/base64-binary-chrome-ext/issues
Ondersteunde Talen 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"
    }
}