Skip to content

Commit

Permalink
Update to v.0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tymchyk committed Oct 22, 2017
1 parent b389c6d commit d3e232a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Chrome Extension for [Wex.nz](https://wex.nz/) Cryptocurrency Exchange
# Chrome Extension for [Wex.nz](https://wex.nz/?ref=coinwizard-wex-ticker) Cryptocurrency Exchange

---

Download Chrome Extension in [Web Store](https://chrome.google.com/webstore/detail/wexnz-exchange-ticker/nogdkjfnegdjdgegekcclglocakclegl?hl=en)
Download Chrome Extension:

[![Web Store](https://developer.chrome.com/webstore/images/ChromeWebStore_Badge_v2_206x58.png)](https://chrome.google.com/webstore/detail/wexnz-exchange-ticker/nogdkjfnegdjdgegekcclglocakclegl?hl=en)

*Created with Love by [CoinWizard Team](https://coinwizard.me/)*
4 changes: 2 additions & 2 deletions resources/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "WEX Exchange ticker",
"version": "0.2.0",
"version": "0.2.1",
"short_name": "WEX Ticker",
"description": "The best way to track Bitcoin, Litecoin and other cryptocurrencies price at Wex exchange",
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
Expand All @@ -11,7 +11,7 @@
"https://*/*"
],
"author": "CoinWizard Team",
"homepage_url": "https://coinwizard.me/",
"homepage_url": "https://coinwizard.me/?ref=wex-ticker",
"icons": {
"128": "/images/wex_128.png"
},
Expand Down
6 changes: 5 additions & 1 deletion src/Popup/Screens/HomeScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ class HomeScreen extends React.Component {
{this.drawTickerList()}

<header className="header">
<a href="https://wex.nz/" target="_blank" className="header__logo" alt="WEX.nz Exchange">
<a href="https://wex.nz/?ref=coinwizard-wex-ticker"
target="_blank"
className="header__logo"
title="WEX.nz Exchange"
>
<img className="header__logo-img" src="/images/wex-logo.png"/>
</a>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Popup/Screens/HomeViews/CurrentTickerView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class CurrentTickerView extends React.Component<CurrentTickerViewPropsInterface,

<div className="current-ticker__market">
<a
href={`https://wex.nz/exchange/${ticker.key}`}
href={`https://wex.nz/exchange/${ticker.key}?ref=coinwizard-wex-ticker`}
className="current-ticker__market-link"
target="_blank"
>Market {ticker.baseCurrency}/{ticker.quoteCurrency}</a>
Expand Down

0 comments on commit d3e232a

Please sign in to comment.