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 |
| 官方網址 | 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
} | |