Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilovelll/cryptocoinprice
Another one extention for visual studio code to show the value of cryptocurrency you looking for.
https://github.com/ilovelll/cryptocoinprice
bitcoin cryptocurrency ethereum vscode-extension
Last synced: 3 months ago
JSON representation
Another one extention for visual studio code to show the value of cryptocurrency you looking for.
- Host: GitHub
- URL: https://github.com/ilovelll/cryptocoinprice
- Owner: ilovelll
- Created: 2017-12-29T03:47:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-09T09:51:38.000Z (over 5 years ago)
- Last Synced: 2024-07-15T12:53:37.924Z (4 months ago)
- Topics: bitcoin, cryptocurrency, ethereum, vscode-extension
- Language: TypeScript
- Size: 731 KB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# CryptoCoinPrice README
[![Version](https://vsmarketplacebadge.apphb.com/version/ilovelll.cryptocoinprice.svg)](https://marketplace.visualstudio.com/items?itemName=ilovelll.cryptocoinprice)
[![Installs](https://vsmarketplacebadge.apphb.com/installs/ilovelll.cryptocoinprice.svg)](https://marketplace.visualstudio.com/items?itemName=ilovelll.cryptocoinprice)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](https://marketplace.visualstudio.com/items?itemName=ilovelll.cryptocoinprice).
## FeaturesThis extention use WebSocket API by [cryptocompare.com](https://www.cryptocompare.com/api/#introduction). All supported coins can be found in [cryptocompare.com](https://www.cryptocompare.com/api/#introduction).
You can use below settings to add you favourite cryptocurrency:
```json
"cryptocoinprice.coinSymbols": [
"BTC",
"ETH"
],
```
It supports color to show price up and price down.
![screenshot](https://raw.githubusercontent.com/ilovelll/cryptocoinprice/master/assets/screenshot.png)## Extension Settings
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 is `USD`.
* `cryptocoinprice.userColor`: If true, highlights items red when they're down and green when they're up, the default value is `true`.## Release Notes
### 0.0.1
Initial repository
### 0.1.0
Update Visual Studio Code Marketplace Address
Update publisher### 0.2.0
Fixed issue [Horizontal text movement from price adjustments is distracting](https://github.com/ilovelll/cryptocoinprice/issues/1).
Thanks [nt85](https://github.com/nt85) for making the PR to enhance the format of StatusBarItem.### 0.2.1
Update dependencies and split business code into files.
### 0.2.2
Fixed issues with currency and coinSymbols #4
Thanks [calculi](https://github.com/calculi) for making the PR.