Base64 Encoder/Decoder
Encodes and decodes media to and from Base64.
Base64 Encoder/Decoder là gì?
Base64 Encoder/Decoder là một tiện ích mở rộng Chrome được phát triển bởi dandeto, và tính năng chính của nó là "Encodes and decodes media to and from Base64.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Base64 Encoder/Decoder
Tải xuống các tệp mở rộng Base64 Encoder/Decoder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Base64 Encoder/Decoder Extension Description This is a browser extension that encodes and decodes media to and from Base64. It was created to help developers who want to use Base64 data strings instead of image or audio files, but the user interface is simple enough for anyone to use. Don't worry! This also supports encoding and decoding text strings. It is much faster and more convenient to use this extension rather than uploading your local files to a server for processing. **Please note** 1. This project is limited to converting media supported by the Base64 standard 2. Large files will take several seconds to process 3. This extension stores data in the following way: - It saves the last entered base64 string so the user does not need to re-enter it when the extension opens back up - The string is stored on the **user's computer** using the chrome.storage API Features Overview - Select a file from your computer and encode it to a Base 64 string - Previews supported files - Convert a Base 64 string to the correct file type - Download the file in any format Supported File Types This extension supports converting the following file types (several examples listed): - Images - png - jpeg - gif - bmp - tiff (can't be displayed) - ico - svg - Audio - mpeg (mp3) - ogg - wav - Text - txt - html - css - js - py - cpp - java Features in Depth: - Can select file from computer - Auto detects file type and converts - Copy button so user doesn't have to Ctrl+A Ctrl+C - Converts to image/audio/text - Auto detects Base64 header and inserts correct one if lacking - Download option in correct or user defined file format - Clean look - Simple user interface Download You can download the latest source code here https://github.com/dandeto/Base-64-Extension/releases Found a Bug? Is there a file type I missed? Please report it in the [issues](https://github.com/dandeto/Base-64-Extension/issues) section and give it a relevant tag.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Base64 Encoder/Decoder |
ID | afdannbjainhcddbjjlhamdgnojibeoi |
URL Chính Thức | https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi |
Mô tả | Encodes and decodes media to and from Base64. |
Kích Thước Tệp | 319 KB |
Số Lần Cài Đặt | 3,929 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2020-12-17 |
Ngày Phát Hành | 2019-07-29 |
Đánh Giá | 4.11/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | dandeto |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Base64 Encoder\/Decoder", "short_name": "Base64", "description": "Encodes and decodes media to and from Base64.", "version": "1.2.2", "offline_enabled": true, "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "Convert to and from Base 64" } } |