Binary Converter

Automatically append an ascii translation to any binary code.

Binary Converter क्या है?

Binary Converter rustyskates द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically append an ascii translation to any binary code."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Binary Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}