Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Apa itu Base64 Decoder?
Base64 Decoder adalah ekstensi Chrome yang dikembangkan oleh dragoonj, dan fitur utamanya adalah "Decodes Base64 strings. Highlight the string and right-click.".
Unduh Berkas CRX Ekstensi Base64 Decoder
Unduh file ekstensi Base64 Decoder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Base64 Decoder |
ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
URL Resmi | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
Deskripsi | Decodes Base64 strings. Highlight the string and right-click. |
Ukuran File | 14.15 KB |
Jumlah Instalasi | 2,413 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2013-03-13 |
Tanggal Publikasi | 2013-03-13 |
Penilaian | 4.08/5 Total 12 Penilaian |
Pengembang | dragoonj |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |