Bitwise Account Manager

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

Bitwise Account Manager là gì?

Bitwise Account Manager là một tiện ích mở rộng Chrome được phát triển bởi https://bitwise.cc, và tính năng chính của nó là "Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bitwise Account Manager

Tải xuống các tệp mở rộng Bitwise Account Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bitwise Account Manager Bitwise Account Manager
ID jabblapkdcnmghnafipabnfkhoieiage
URL Chính Thức https://chromewebstore.google.com/detail/bitwise-account-manager/jabblapkdcnmghnafipabnfkhoieiage
Mô tả Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.
Kích Thước Tệp 24.79 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2020-05-15
Ngày Phát Hành 2020-05-15
Nhà Phát Triển https://bitwise.cc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bitwise.cc
URL Trang Chính Sách Bảo Mật https://github.com/bitwisecc/bam/blob/master/PRIVACY
Ngôn Ngữ Được Hỗ Trợ 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
}