Base64 Decoder

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

Что такое Base64 Decoder?

Base64 Decoder - это расширение Chrome, разработанное dragoonj, и его основная функция - "Decodes Base64 strings. Highlight the string and right-click.".

Скачать файл CRX расширения Base64 Decoder

Скачайте файлы расширений Base64 Decoder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
Официальный URL https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
Описание Decodes Base64 strings. Highlight the string and right-click.
Размер файла 14.15 KB
Количество установок 2,413
Текущая Версия 0.2
Последнее Обновление 2013-03-13
Дата публикации 2013-03-13
Рейтинг 4.08/5 Всего 12 оценок
Разработчик dragoonj
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}