Binary Converter
Automatically append an ascii translation to any binary code.
What is Binary Converter?
Binary Converter is a Chrome extension developed by rustyskates, and its main feature is "Automatically append an ascii translation to any binary code.".
Extension Screenshots
Download Binary Converter Extension CRX File
Download Binary Converter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | bjacdlmipkheclhdbkemifnndonapped |
Official URL | https://chrome.google.com/webstore/detail/binary-converter/bjacdlmipkheclhdbkemifnndonapped |
Description | Automatically append an ascii translation to any binary code. |
File Size | 38.93 KB |
Installation Count | 74 |
Current Version | 1.1 |
Last Updated | 2016-06-05 |
Publish Date | 2016-06-05 |
Rating | 3.40/5 Total 5 Ratings |
Developer | rustyskates |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Binary Converter", "description": "Automatically append an ascii translation to any binary code.", "version": "1.1", "permissions": [ "tabs", "http:\/\/*\/*" ], "background": "background.html", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.9.1.min.js", "content.js" ], "run_at": "document_end" } ] } |