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"
        }
    ]
}