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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย base64 to binary

ดาวน์โหลดไฟล์ส่วนขยาย base64 to binary ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
URL หน้าช่วยเหลือ 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"
    }
}