## Introduction [CoinTools](https://helloacm.com/cointools-update-v0-0-8-add-coinbase-api-customized-history-data/) is a handy gadget to Chrome browser that you can launch easily to view the information of cryptocurrency. ## Previous Contributions - v0.0.8: [CoinTools Update: v0.0.8: Add Coinbase API + Customized History Data](https://helloacm.com/cointools-update-v0-0-8-add-coinbase-api-customized-history-data/) - v0.0.7: [CoinTools: Historical Conversion between Any Two Cryptocurrency](https://helloacm.com/cointools-historical-conversion-between-any-two-cryptocurrency/) - v0.0.6: [CoinTools Update: Show Full Cryptocurrency Details by Click or Startup, Add Language Handlers](https://helloacm.com/cointools-update-show-full-cryptocurrency-details-by-click-or-startup-add-language-handlers/) - [CoinTools v0.0.5: Update: Cryptocurrency Converter Calculator, Support Coin Symbols and Add More Localization](https://helloacm.com/cointools-update-cryptocurrency-converter-calculator-support-coin-symbols-and-add-more-localization/) - [CoinTools v0.0.4: Conversion Between Two Fiat or Fiat-Coin + 24 Hour Cap Chart](https://helloacm.com/cointools-v0-0-4-conversion-between-two-fiat-or-fiat-coin-24-hour-total-market-cap-chart/) - [CoinTools v0.0.3: Adding Total Market Cap USD Chart, Localization and Stock Price Emoji](https://helloacm.com/cointools-v0-0-3-adding-total-market-cap-usd-chart-localization-and-stock-price-emoji/) - [v0.0.2 Cryptocurrency Conversion + UI Localization](https://helloacm.com/cointool-v0-0-2-cryptocurrency-conversion-ui-localization/) - [v0.0.1 Introduction to CoinTools! A Cryptocurrency Chrome Extension](https://helloacm.com/introduction-to-cointools-a-cryptocurrency-chrome-extension/) ## Technology Stacks Javascript that runs in [Chrome](https://helloacm.com/how-to-enable-inline-chrome-extension-installation-in-chrome-browser/). ## Github https://github.com/DoctorLai/CoinTools ## Chrome Webstore It is available online at Chrome Webstore: https://chrome.google.com/webstore/detail/coin-tools/fmglcggbdcbkpkfapngjobfeakehpcgj ## v0.0.9 Feature Along with some UI localizations, enhanced error handling, [this version](https://helloacm.com/cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation/) allows users to reverse calculate the cryptocurrency pair and specify the amount in the conversion. ## Screenshots Specify negative numbers means reverse calculation:  and you can specify these formats:  that will fulfill the equations when APP starts up.  ## Commits **[Here](https://github.com/DoctorLai/CoinTools/commit/f1979edcce38274b4fabfabaa4fa39f7ccdd4261)** ## Javascript Solves Cryptocurrency Equations The following solves either `x A = ? B` or `? A = x B`. ``` let a = pair[0].trim().toUpperCase(); let b = pair[1].trim().toUpperCase(); let c = pair[2].trim().toUpperCase(); // e.g. 100 BTC SBD if (isNumeric(a) && isValidSymbol(b) && isValidSymbol(c)) { let dom = $('div#conversion_results'); let dom_id = "cc_" + removeInvalid(a) + "_" + removeInvalid(b) + "_" + removeInvalid(c); dom.append('<div id="' + dom_id + '"> </div>'); getConversion(b, c).then(x => { $('div#' + dom_id).html("<h4>" + a + " " + b.toUpperCase() + " = <span class=yellow>" + (x * a) + "</span> " + c.toUpperCase() + "</h4>"); }); } else if (isNumeric(b) && isValidSymbol(a) && isValidSymbol(c)) { // e.g. BTC 100 SBD let dom = $('div#conversion_results'); let dom_id = "cc2_" + removeInvalid(a) + "_" + removeInvalid(b) + "_" + removeInvalid(c); dom.append('<div id="' + dom_id + '"> </div>'); getConversion(a, c).then(x => { $('div#' + dom_id).html("<h4>" + (b * 1.0 / x) + " " + a.toUpperCase() + " = <span class=yellow>" + (b) + "</span> " + c.toUpperCase() + "</h4>"); }); } else { logit(get_text('error', "Error") + ": " + a + ", " + b + ", " + c); } ``` ## Roadmap of CoinTools Any good suggestions, please shout at @justyy. # License [MIT](https://github.com/DoctorLai/CoinTools/blob/master/LICENSE) # Contribution Welcome Github: https://github.com/DoctorLai/CoinTools/ 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request. # Chrome Webstore Install the [CoinTools](https://chrome.google.com/webstore/detail/coin-tools/fmglcggbdcbkpkfapngjobfeakehpcgj) Now! <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@justyy/cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | justyy | ||||||
---|---|---|---|---|---|---|---|
permlink | cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":121162429,"name":"CoinTools","full_name":"DoctorLai/CoinTools","html_url":"https://github.com/DoctorLai/CoinTools","fork":false,"owner":{"login":"DoctorLai"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemstem","cryptocurrency","programming","steemapps"],"users":["justyy"],"links":["https://helloacm.com/cointools-update-v0-0-8-add-coinbase-api-customized-history-data/","https://helloacm.com/cointools-historical-conversion-between-any-two-cryptocurrency/","https://helloacm.com/cointools-update-show-full-cryptocurrency-details-by-click-or-startup-add-language-handlers/","https://helloacm.com/cointools-update-cryptocurrency-converter-calculator-support-coin-symbols-and-add-more-localization/","https://helloacm.com/cointools-v0-0-4-conversion-between-two-fiat-or-fiat-coin-24-hour-total-market-cap-chart/","https://helloacm.com/cointools-v0-0-3-adding-total-market-cap-usd-chart-localization-and-stock-price-emoji/","https://helloacm.com/cointool-v0-0-2-cryptocurrency-conversion-ui-localization/","https://helloacm.com/introduction-to-cointools-a-cryptocurrency-chrome-extension/","https://helloacm.com/how-to-enable-inline-chrome-extension-installation-in-chrome-browser/","https://github.com/DoctorLai/CoinTools","https://chrome.google.com/webstore/detail/coin-tools/fmglcggbdcbkpkfapngjobfeakehpcgj","https://helloacm.com/cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation/","https://github.com/DoctorLai/CoinTools/commit/f1979edcce38274b4fabfabaa4fa39f7ccdd4261","https://github.com/DoctorLai/CoinTools/blob/master/LICENSE","https://github.com/DoctorLai/CoinTools/","https://utopian.io/utopian-io/@justyy/cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519762588/amigepbgpkqyvvgnbwhi.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519762620/mjcfqkg7spfzuqdbluvo.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1519762661/rqlfq2joyxna8e4szpue.png"],"moderator":{"account":"ms10398","time":"2018-02-28T04:39:34.247Z","reviewed":true,"pending":false,"flagged":false},"questions":[],"score":0} | ||||||
created | 2018-02-27 20:20:12 | ||||||
last_update | 2018-02-28 04:39:36 | ||||||
depth | 0 | ||||||
children | 5 | ||||||
last_payout | 2018-03-06 20:20:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 38.520 HBD | ||||||
curator_payout_value | 13.627 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,966 | ||||||
author_reputation | 280,616,224,641,976 | ||||||
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 40,950,542 | ||||||
net_rshares | 11,576,001,942,446 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ace108 | 0 | 185,009,550,700 | 17% | ||
magicmonk | 0 | 88,521,659,863 | 50% | ||
rivalhw | 0 | 74,175,491,270 | 5% | ||
helene | 0 | 55,749,671,262 | 10% | ||
justyy | 0 | 544,217,064,754 | 80% | ||
luneknight | 0 | 712,300,179 | 100% | ||
dapeng | 0 | 2,478,050,804 | 2% | ||
happyukgo | 0 | 1,413,802,535 | 80% | ||
andrianna | 0 | 5,662,785,949 | 100% | ||
sv67216721 | 0 | 361,693,173 | 5% | ||
frankintaiwan | 0 | 80,958,102 | 20% | ||
lonnie.sprinkles | 0 | 115,375,649 | 20% | ||
jassennessaj | 0 | 15,420,112,549 | 10% | ||
helo | 0 | 902,153,659 | 10% | ||
shenchensucc | 0 | 3,134,131,624 | 20% | ||
czechglobalhosts | 0 | 368,231,230,006 | 4% | ||
victorialuxx | 0 | 159,371,051 | 100% | ||
susanli3769 | 0 | 206,795,925,042 | 100% | ||
liflorence | 0 | 37,617,386,145 | 84% | ||
davidmendel | 0 | 21,885,292,157 | 100% | ||
robinlee | 0 | 372,961,550 | 100% | ||
sandan | 0 | 64,360,204 | 100% | ||
rainyapril | 0 | 490,543,002 | 100% | ||
al2ping | 0 | 96,482,074 | 100% | ||
liangfengyouren | 0 | 982,741,357 | 50% | ||
shengjian | 0 | 17,244,829,669 | 100% | ||
kangnajiang | 0 | 319,329,210 | 100% | ||
cifer | 0 | 2,293,678,384 | 80% | ||
geass | 0 | 498,935,274 | 100% | ||
moonvoid | 0 | 614,503,785 | 100% | ||
boontjie | 0 | 15,887,854,446 | 100% | ||
rosatravels | 0 | 48,325,440,361 | 50% | ||
xuran | 0 | 5,075,463,584 | 100% | ||
awiwea1974 | 0 | 407,879,381 | 100% | ||
superbing | 0 | 6,693,553,109 | 80% | ||
dailyfortune | 0 | 4,948,160,175 | 80% | ||
xiaoshancun | 0 | 884,077,747 | 100% | ||
dailystats | 0 | 9,901,583,567 | 80% | ||
ayman101 | 0 | 545,230,471 | 100% | ||
vandadream | 0 | 4,692,444,857 | 100% | ||
steemline | 0 | 173,096,292 | 100% | ||
winniex | 0 | 2,103,911,702 | 10% | ||
ivysrono | 0 | 1,064,834,043 | 100% | ||
jianan | 0 | 453,878,891 | 100% | ||
utopian-io | 0 | 9,659,069,314,130 | 6.84% | ||
nada101 | 0 | 570,443,805 | 100% | ||
nileelily | 0 | 4,292,885,500 | 100% | ||
chann | 0 | 4,006,546,854 | 10% | ||
daxiang | 0 | 230,973,381 | 100% | ||
anxin | 0 | 484,238,812 | 100% | ||
cnsteem | 0 | 76,221,020,571 | 100% | ||
lebin | 0 | 32,012,396,644 | 50% | ||
coindzs | 0 | 53,532,040 | 100% | ||
cryptonewsly | 0 | 177,124,387 | 100% | ||
tdre | 0 | 684,340,224 | 100% | ||
blockd | 0 | 488,125,755 | 100% | ||
moobear | 0 | 1,526,372,631 | 100% | ||
jjay | 0 | 625,470,189 | 100% | ||
prch | 0 | 1,539,511,683 | 100% | ||
nean | 0 | 487,536,467 | 100% | ||
foodielifestyle | 0 | 1,476,893,575 | 100% | ||
jeffreysxy | 0 | 2,207,557,061 | 100% | ||
woolfe19861008 | 0 | 664,458,527 | 100% | ||
dailychina | 0 | 6,852,129,355 | 80% | ||
vincenthan | 0 | 488,861,131 | 100% | ||
yuxuan | 0 | 82,774,122 | 100% | ||
dongfengman | 0 | 7,196,890,951 | 100% | ||
historylover | 0 | 518,106,091 | 100% | ||
serenazz | 0 | 755,555,602 | 100% | ||
cha0s0000 | 0 | 3,470,950,975 | 100% | ||
yedda | 0 | 487,882,746 | 100% | ||
shentrading | 0 | 563,493,479 | 100% | ||
zasilla | 0 | 490,333,301 | 100% | ||
fishaa | 0 | 287,080,587 | 100% | ||
aaronstar | 0 | 112,228,174 | 100% | ||
ayanamoon | 0 | 103,293,002 | 100% | ||
ethanlee | 0 | 10,280,327,074 | 100% | ||
mmaarrttiinn11 | 0 | 546,815,601 | 100% | ||
twinsnicole | 0 | 465,160,116 | 100% | ||
deepthinking | 0 | 479,411,326 | 100% | ||
gogoabc | 0 | 324,596,232 | 100% | ||
fishbb | 0 | 113,253,285 | 100% | ||
gustdam | 0 | 410,902,127 | 100% | ||
jacek-w | 0 | 122,088,692 | 100% | ||
linda65 | 0 | 9,895,549,213 | 100% | ||
inmylife | 0 | 1,326,292,497 | 100% | ||
fanso | 0 | 482,177,090 | 100% | ||
lilypang22 | 0 | 1,746,553,952 | 100% | ||
jeffan | 0 | 60,128,697 | 100% | ||
fishcc | 0 | 199,642,423 | 100% | ||
tinna | 0 | 202,397,050 | 100% | ||
amyli | 0 | 85,136,674 | 100% | ||
zens | 0 | 349,387,380 | 100% | ||
ashi0 | 0 | 474,766,947 | 100% | ||
steemitvip | 0 | 462,924,969 | 100% | ||
lakemountain | 0 | 1,872,633,387 | 100% | ||
regals | 0 | 488,479,379 | 100% | ||
chaimyu | 0 | 605,216,975 | 100% |
看你发过steemit相关收益的文章,不知道现在怎么样?新加入这个平台,也关注你个人公众号了
author | chaimyu |
---|---|
permlink | re-justyy-cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation-20180228t073946679z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-28 07:39:48 |
last_update | 2018-02-28 07:39:48 |
depth | 1 |
children | 0 |
last_payout | 2018-03-07 07:39:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 4,692,484,611,160 |
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,063,226 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | ms10398 |
---|---|
permlink | re-justyy-cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation-20180228t043945688z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-28 04:39:45 |
last_update | 2018-02-28 04:39:45 |
depth | 1 |
children | 0 |
last_payout | 2018-03-07 04:39:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 27,572,487,973,390 |
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,031,834 |
net_rshares | 0 |
I think this should work well on mobile also? A, for now, I rely solely on cointelegraph and new.bicoin for information regarding crypto.
author | paulo380 |
---|---|
permlink | re-justyy-cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation-20180227t214349684z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-27 21:43:54 |
last_update | 2018-02-27 21:43:54 |
depth | 1 |
children | 1 |
last_payout | 2018-03-06 21:43:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 6,388,272,905,577 |
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,964,340 |
net_rshares | 0 |
unfortunately, this only works in desktop chrome browsers.
author | justyy |
---|---|
permlink | re-paulo380-re-justyy-cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation-20180227t222247184z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-02-27 22:22:48 |
last_update | 2018-02-27 22:22:48 |
depth | 2 |
children | 0 |
last_payout | 2018-03-06 22:22:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 280,616,224,641,976 |
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,970,132 |
net_rshares | 0 |
### Hey @justyy I am @utopian-io. I have just upvoted you! #### Achievements - WOW WOW WOW People loved what you did here. GREAT JOB! - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-justyy-cointools-update-v0-0-9-specify-amount-reverse-cryptocurrency-calculation-20180228t151755390z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-02-28 15:17:54 |
last_update | 2018-02-28 15:17:54 |
depth | 1 |
children | 0 |
last_payout | 2018-03-07 15:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,061 |
author_reputation | 152,955,367,999,756 |
root_title | "CoinTools Update: v0.0.9, Specify Amount + Reverse Cryptocurrency Calculation" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,149,365 |
net_rshares | 0 |