base64 to binary
Decodes base64 string to and from array of bytes or ASCII string
Qu'est-ce que base64 to binary ?
base64 to binary est une extension Chrome développée par Anton Sergeyev, et sa fonction principale est "Decodes base64 string to and from array of bytes or ASCII string".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension base64 to binary
Téléchargez les fichiers d'extension base64 to binary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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=
Informations de Base sur l'Extension
Nom | base64 to binary |
ID | ajpoogneninennkhhnbmflmjjcagabpb |
URL Officiel | https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb |
Description | Decodes base64 string to and from array of bytes or ASCII string |
Taille du Fichier | 24.75 KB |
Nombre d'Installations | 55 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2017-07-16 |
Date de Publication | 2017-07-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Anton Sergeyev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/xapon/base64-binary-chrome-ext |
URL de la Page d'Aide | https://github.com/xapon/base64-binary-chrome-ext/issues |
Langues Prises en Charge | 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" } } |