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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم 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"
        }
    ]
}