Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Cos'è Base64 Decoder?
Base64 Decoder è un'estensione di Chrome sviluppata da dragoonj, e la sua funzione principale è "Decodes Base64 strings. Highlight the string and right-click.".
Scarica il file CRX dell'estensione Base64 Decoder
Scarica i file di estensione Base64 Decoder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Base64 Decoder |
ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
URL Ufficiale | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
Descrizione | Decodes Base64 strings. Highlight the string and right-click. |
Dimensione del File | 14.15 KB |
Conteggio Installazioni | 2,413 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2013-03-13 |
Data di Pubblicazione | 2013-03-13 |
Valutazione | 4.08/5 Totale 12 Valutazioni |
Sviluppatore | dragoonj |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |