base64 to binary

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

Cos'è base64 to binary?

base64 to binary è un'estensione di Chrome sviluppata da Anton Sergeyev, e la sua funzione principale è "Decodes base64 string to and from array of bytes or ASCII string".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione base64 to binary

Scarica i file di estensione base64 to binary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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=                    

Informazioni di Base sull'Estensione

Nome base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
URL Ufficiale https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Descrizione Decodes base64 string to and from array of bytes or ASCII string
Dimensione del File 24.75 KB
Conteggio Installazioni 55
Versione Corrente 0.1
Ultimo Aggiornamento 2017-07-16
Data di Pubblicazione 2017-07-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Anton Sergeyev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/xapon/base64-binary-chrome-ext
URL della Pagina di Aiuto https://github.com/xapon/base64-binary-chrome-ext/issues
Lingue Supportate 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"
    }
}