Base64 Decoder

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

Qu'est-ce que Base64 Decoder ?

Base64 Decoder est une extension Chrome développée par dragoonj, et sa fonction principale est "Decodes Base64 strings. Highlight the string and right-click.".

Télécharger le fichier CRX de l'extension Base64 Decoder

Téléchargez les fichiers d'extension Base64 Decoder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
URL Officiel https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
Description Decodes Base64 strings. Highlight the string and right-click.
Taille du Fichier 14.15 KB
Nombre d'Installations 2,413
Version Actuelle 0.2
Dernière Mise à Jour 2013-03-13
Date de Publication 2013-03-13
Évaluation 4.08/5 Total 12 Évaluations
Développeur dragoonj
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}