Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
What is Base64 Decoder?
Base64 Decoder is a Chrome extension developed by dragoonj, and its main feature is "Decodes Base64 strings. Highlight the string and right-click.".
Download Base64 Decoder Extension CRX File
Download Base64 Decoder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Base64 Decoder |
ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
Official URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
Description | Decodes Base64 strings. Highlight the string and right-click. |
File Size | 14.15 KB |
Installation Count | 2,413 |
Current Version | 0.2 |
Last Updated | 2013-03-13 |
Publish Date | 2013-03-13 |
Rating | 4.08/5 Total 12 Ratings |
Developer | dragoonj |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |