Binary Converter
Automatically append an ascii translation to any binary code.
什么是Binary Converter?
Binary Converter是由rustyskates开发的Chrome扩展程序,该扩展的主要功能是“Automatically append an ascii translation to any binary code.”。
扩展截图
下载Binary Converter扩展crx文件
下载Binary Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | bjacdlmipkheclhdbkemifnndonapped |
官方URL | https://chrome.google.com/webstore/detail/binary-converter/bjacdlmipkheclhdbkemifnndonapped |
简介 | Automatically append an ascii translation to any binary code. |
文件大小 | 38.93 KB |
安装次数 | 74 |
当前版本 | 1.1 |
更新时间 | 2016-06-05 |
上架时间 | 2016-06-05 |
评分 | 3.40/5 共5次评分 |
开发者 | rustyskates |
付费类型 | free |
支持的语言 | 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" } ] } |