base64 to binary

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

Vad är base64 to binary?

base64 to binary är en Chrome-tillägg utvecklad av Anton Sergeyev, och dess huvudfunktion är "Decodes base64 string to and from array of bytes or ASCII string".

Tilläggsskärmbilder

screenshot

Ladda ner base64 to binary-förlängningens CRX-fil

Ladda ner base64 to binary-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn base64 to binary base64 to binary
ID ajpoogneninennkhhnbmflmjjcagabpb
Officiell webbadress https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb
Beskrivning Decodes base64 string to and from array of bytes or ASCII string
Filstorlek 24.75 KB
Antal Installationer 55
Aktuell Version 0.1
Senast Uppdaterad 2017-07-16
Publiceringsdatum 2017-07-15
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Anton Sergeyev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/xapon/base64-binary-chrome-ext
Hjälpsida URL https://github.com/xapon/base64-binary-chrome-ext/issues
Stödda Språk 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"
    }
}