Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
什么是Base64 Decoder?
Base64 Decoder是由dragoonj开发的Chrome扩展程序,该扩展的主要功能是“Decodes Base64 strings. Highlight the string and right-click.”。
下载Base64 Decoder扩展crx文件
下载Base64 Decoder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a tiny extension that does just one thing: Decodes Base64 strings.
To use, simply highlight the string you wish to decode, right-click it, and select 'Base64 Decode'.
Note: depending on the structure of the page, decoding the string may cause some funny formatting issues. Refresh the page to restore structure/formatting. 扩展基本信息
| 名称 | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| 官方URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| 简介 | Decodes Base64 strings. Highlight the string and right-click. |
| 文件大小 | 14.15 KB |
| 安装次数 | 2,413 |
| 当前版本 | 0.2 |
| 更新时间 | 2013-03-13 |
| 上架时间 | 2013-03-13 |
| 评分 | 4.08/5 共12次评分 |
| 开发者 | dragoonj |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Base64 Decoder",
"description": "Decodes Base64 strings. Highlight the string and right-click.",
"version": "0.2",
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"zepto.js",
"content.js"
]
}
],
"manifest_version": 2
} | |