Skip to content

Commit

Permalink
Update to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tymchyk committed Oct 22, 2017
1 parent 7f4c31b commit 38ed392
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Chrome Extension for [Kuna.io](https://kuna.io/) Cryptocurrency Exchange
# Chrome Extension for [Kuna.io](https://kuna.io/?ref=coinwizard-kuna-ticker) Cryptocurrency Exchange

Download Chrome Extension in [Web Store](https://chrome.google.com/webstore/detail/kunaio-ticker-exchange/fgdaflnjoincloakmmndamfgofijeine)
Download Chrome Extension:

[![Web Store](https://developer.chrome.com/webstore/images/ChromeWebStore_Badge_v2_206x58.png)](https://chrome.google.com/webstore/detail/kunaio-ticker-exchange/fgdaflnjoincloakmmndamfgofijeine)

---

Expand Down
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": "Kuna Exchange ticker",
"version": "0.4.0",
"version": "0.4.1",
"short_name": "Kuna Ticker",
"description": "Be first at changes of Bitcoin - Kuna Exchange ticker",
"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=kuna-ticker",
"icons": {
"114": "/images/kuna_114.png",
"128": "/images/kuna_128.png",
Expand Down
2 changes: 1 addition & 1 deletion src/Popup/Screens/HomeScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class HomeScreen extends React.Component {
{this.drawTickerList()}

<header className="header">
<a href="https://kuna.io/" target="_blank" className="header__logo">
<a href="https://kuna.io/?ref=coinwizard-kuna-ticker" target="_blank" className="header__logo">
<img className="header__logo-img" src="/images/kuna-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://kuna.io/markets/${ticker.key}`}
href={`https://kuna.io/markets/${ticker.key}?ref=coinwizard-kuna-ticker`}
className="current-ticker__market-link"
target="_blank"
>Market {ticker.baseCurrency}/{ticker.quoteCurrency}</a>
Expand Down
2 changes: 0 additions & 2 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import KunaApiClient from 'Core/Kuna/ApiClient';
import KunaTickerMap from 'Core/Kuna/TickerMap';

import BadgeController from 'Background/BadgeController';


const TickerStorage = {};

_.each(KunaTickerMap, (ticker) => {
Expand Down

0 comments on commit 38ed392

Please sign in to comment.