Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Base64 Decoder là gì?
Base64 Decoder là một tiện ích mở rộng Chrome được phát triển bởi dragoonj, và tính năng chính của nó là "Decodes Base64 strings. Highlight the string and right-click.".
Tải xuống tệp CRX của tiện ích mở rộng Base64 Decoder
Tải xuống các tệp mở rộng Base64 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Base64 Decoder |
ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
URL Chính Thức | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
Mô tả | Decodes Base64 strings. Highlight the string and right-click. |
Kích Thước Tệp | 14.15 KB |
Số Lần Cài Đặt | 2,413 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2013-03-13 |
Ngày Phát Hành | 2013-03-13 |
Đánh Giá | 4.08/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | dragoonj |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |