base64 to binary
Decodes base64 string to and from array of bytes or ASCII string
ما هو base64 to binary؟
base64 to binary هو إضافة Chrome تم تطويرها بواسطة Anton Sergeyev، والميزة الرئيسية لها هي "Decodes base64 string to and from array of bytes or ASCII string".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة base64 to binary
قم بتنزيل ملفات الامتداد base64 to binary بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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=
معلومات أساسية عن التمديد
الاسم | base64 to binary |
ID | ajpoogneninennkhhnbmflmjjcagabpb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/base64-to-binary/ajpoogneninennkhhnbmflmjjcagabpb |
الوصف | Decodes base64 string to and from array of bytes or ASCII string |
حجم الملف | 24.75 KB |
عدد التثبيتات | 55 |
النسخة الحالية | 0.1 |
آخر تحديث | 2017-07-16 |
تاريخ النشر | 2017-07-15 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Anton Sergeyev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/xapon/base64-binary-chrome-ext |
عنوان صفحة المساعدة | https://github.com/xapon/base64-binary-chrome-ext/issues |
اللغات المدعومة | 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" } } |