-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
23 lines (23 loc) · 1.03 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Статистика по счету</title>
<script type="module" src="js/popup.js"></script>
<link rel="stylesheet" type="text/css" href="css/popup.css">
</head>
<body>
<a target="_blank" href="https://www.tinkoff.ru/invest/broker_account/">Личный кабинет брокера</a>
<a target="_blank" href="options.html">Настройки</a>
<a target="_blank" href="https://journal.tinkoff.ru/help/trading/">FAQ по брокеру</a>
<div id="container">
<h5>Стоимость портфеля</h5>
<span id="sum">~</span>
<h5>Доходность за все время</h5>
<div id="all"><span id="earnedAll">~</span><span class="percent" id="earnedAllPercent">~</span></div>
<h5>Доходность за день</h5>
<div id="day"><span id="earnedToday">~</span><span class="percent" id="earnedTodayPercent">~</span></div>
<div id="footer">Обновлено <span id="timestamp">~</span></div>
</div>
</body>
</html>