Base64 Decoder

Decodes Base64 strings. Highlight the string and right-click.

O que é Base64 Decoder?

Base64 Decoder é uma extensão do Chrome desenvolvida por dragoonj, e sua principal característica é "Decodes Base64 strings. Highlight the string and right-click.".

Baixar o arquivo CRX da Extensão Base64 Decoder

Baixe arquivos de extensão Base64 Decoder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
URL Oficial https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
Descrição Decodes Base64 strings. Highlight the string and right-click.
Tamanho do Arquivo 14.15 KB
Contagem de Instalações 2,413
Versão Atual 0.2
Última Atualização 2013-03-13
Data de Publicação 2013-03-13
Classificação 4.08/5 Total de 12 Avaliações
Desenvolvedor dragoonj
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}