Bitwise Account Manager

Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.

Bitwise Account Manager क्या है?

Bitwise Account Manager https://bitwise.cc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties."।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Bitwise Account Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Bitwise Account Manager (BAM) is an open-source Chrome extension that securely manages BitMEX API keys. It enables secure crypto-trading on https://bitwise.cc without exposing API secrets, order history, and other sensitive information to third parties (including Bitwise).

BAM does not collect any personal or usage information. It uses no third party services and loads no external resources.

BAM uses industry standards such as AES and PBKDF2 to encrypt user-supplied data and store them locally.  It exposes no interfaces for a host application to extract or tamper with sensitive API secrets.

BAM securely signs API requests and sends them directly to BitMEX from the Chrome browser without relying on any relay server.

Full source code is available at https://github.com/bitwisecc/bam                    

एक्सटेंशन की मूल जानकारी

नाम Bitwise Account Manager Bitwise Account Manager
ID jabblapkdcnmghnafipabnfkhoieiage
आधिकारिक URL https://chromewebstore.google.com/detail/bitwise-account-manager/jabblapkdcnmghnafipabnfkhoieiage
विवरण Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.
फ़ाइल का आकार 24.79 KB
स्थापना संख्या 28
वर्तमान संस्करण 2.0.1
अंतिम अपडेट 2020-05-15
प्रकाशन तिथि 2020-05-15
डेवलपर https://bitwise.cc
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bitwise.cc
गोपनीयता नीति पृष्ठ URL https://github.com/bitwisecc/bam/blob/master/PRIVACY
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitwise Account Manager",
    "short_name": "BAM",
    "version": "2.0.1",
    "description": "Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "asserts.js",
            "crypto.js",
            "accounts.js",
            "config.js",
            "ports.js",
            "mux.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "*:\/\/*.bitwise.cc\/",
        "*:\/\/www.bitmex.com\/",
        "*:\/\/testnet.bitmex.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bitwise.cc\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.bitwise.cc\/*"
        ]
    },
    "manifest_version": 2
}