Base64 Decoder

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

Co to jest Base64 Decoder?

Base64 Decoder to rozszerzenie Chrome opracowane przez dragoonj, a jego główną funkcją jest „Decodes Base64 strings. Highlight the string and right-click.”.

Pobierz plik CRX rozszerzenia Base64 Decoder

Pobierz pliki rozszerzeń Base64 Decoder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
Oficjalny URL https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
Opis Decodes Base64 strings. Highlight the string and right-click.
Rozmiar pliku 14.15 KB
Liczba instalacji 2,413
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2013-03-13
Data Publikacji 2013-03-13
Ocena 4.08/5 Łącznie 12 Oceny
Deweloper dragoonj
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}