Another one extention for visual studio code to show the value of cryptocurrency like Bitcoin, Ethereum, Litecoin, XMR etc. This extention can be found at Visual Studio Code Marketplace.
This extention use WebSocket API by cryptocompare.com. All supported coins can be found in cryptocompare.com. You can use below settings to add you favourite cryptocurrency:
"cryptocoinprice.coinSymbols": [
"BTC",
"ETH"
],
It supports color to show price up and price down.
This extension contributes the following settings:
cryptocoinprice.coinSymbols
: The list of Crypto coin symbols that we want to display, the default value["BTC", "ETH"]
.cryptocoinprice.toSymbol
: The currency to use for crypto coin prices, the default value isUSD
.cryptocoinprice.userColor
: If true, highlights items red when they're down and green when they're up, the default value istrue
.
Initial repository
Update Visual Studio Code Marketplace Address Update publisher
Fixed issue Horizontal text movement from price adjustments is distracting. Thanks nt85 for making the PR to enhance the format of StatusBarItem.
Update dependencies and split business code into files.
Fixed issues with currency and coinSymbols #4 Thanks calculi for making the PR.