nathanp / crypto-price-widget

Easily track the price of your favorite crypto in an attractive desktop widget
https://cryptopricewidget.com
Creative Commons Zero v1.0 Universal
84 stars 26 forks source link

Added always show USD option #68

Open RenanMsV opened 3 years ago

RenanMsV commented 3 years ago

I wanted it to show my main country currency (BRL) and also have it showing standard USD at the same time.

Made it by also requesting USD data in the url with

"&tsyms=" + base + ",USD&extraParams=crypto-price-widget";

if (base != "USD" && settings.get("user.alwaysShowUsd") == "yes") { // display also prices in USD
    coinRate = coinRate + (" <small>($") + coinRAW["USD"].PRICE.toFixed(4) + ")</small>"
}

It works good, even added an option for it in the settings.

Feel free to deny this pull request and do it differently.

Best regards, RenanMsV