base64 to binary
Decodes base64 string to and from array of bytes or ASCII string
base64 to binary क्या है?
base64 to binary Anton Sergeyev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Decodes base64 string to and from array of bytes or ASCII string"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में base64 to binary एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |