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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Bitwise Account Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}