Binary Converter

Automatically append an ascii translation to any binary code.

Что такое Binary Converter?

Binary Converter - это расширение Chrome, разработанное rustyskates, и его основная функция - "Automatically append an ascii translation to any binary code.".

Снимки экрана расширения

screenshot

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

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

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

                                            

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

Название Binary Converter Binary Converter
ID bjacdlmipkheclhdbkemifnndonapped
Официальный URL https://chrome.google.com/webstore/detail/binary-converter/bjacdlmipkheclhdbkemifnndonapped
Описание Automatically append an ascii translation to any binary code.
Размер файла 38.93 KB
Количество установок 74
Текущая Версия 1.1
Последнее Обновление 2016-06-05
Дата публикации 2016-06-05
Рейтинг 3.40/5 Всего 5 оценок
Разработчик rustyskates
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Binary Converter",
    "description": "Automatically append an ascii translation to any binary code.",
    "version": "1.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "background": "background.html",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}