base64 to binary

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

Hvad er base64 to binary?

base64 to binary er en Chrome-udvidelse udviklet af Anton Sergeyev, og dens hovedfunktion er "Decodes base64 string to and from array of bytes or ASCII string".

Udvidelsesskærmbilleder

screenshot

Download base64 to binary-udvidelses-CRX-fil

Download base64 to binary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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=                    

Grundlæggende oplysninger om udvidelsen

Navn base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
Officiel URL https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Beskrivelse Decodes base64 string to and from array of bytes or ASCII string
Filstørrelse 24.75 KB
Antal Installationer 55
Nuværende Version 0.1
Senest Opdateret 2017-07-16
Udgivelsesdato 2017-07-15
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Anton Sergeyev
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/xapon/base64-binary-chrome-ext
Hjælpeside-URL https://github.com/xapon/base64-binary-chrome-ext/issues
Understøttede Sprog 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"
    }
}