forked from x2rr/funds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedge.html
125 lines (107 loc) · 4.8 KB
/
edge.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="基金,自选基金,自选基金助手,基金助手,自选,fund,chrome扩展,extension,chrome,funds,实时">
<meta name="description"
content="自选基金助手是一款Chrome扩展,实时查看您关注的基金,助您快速获取实时数据,可以用来查看您的自选基金的实时估值情况,可以自由的增减自选基金。您的自选基金数据会跟随账号同步。">
<title>自选基金助手</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<style>
body {
padding: 15px;
}
.content {
width: 800px;
margin: 0 auto;
}
@media (max-width: 850px) {
.content {
width: 100%;
}
}
h1 {
margin-top: 50px;
}
.img-row {
margin: 10px;
text-align: center;
}
.img-row img {
max-width: 100%;
}
</style>
</head>
<body>
<div class="content">
<h1>自选基金助手</h1>
<p>自选基金助手,实时查看您关注的基金,助您快速获取实时数据</p>
<p>可以用来查看您的自选基金的实时估值情况,可以自由的增减自选基金。您的自选基金数据会跟随账号同步。</p>
<h2>介绍</h2>
<p>买了基金后,一直想找一款pc端的浏览器扩展插件,毕竟股票的交易时间都是在工作日进行的,可惜找不到,便打算自己写一个,已上架扩展商店。扩展的形式很适合上班族,不用打开网站,仅以小窗口的形式展示,不会引起BOSS的注意,方便上班摸鱼。
</p>
<p>首先输入基金代码添加基金,将基金添加特别关注后,可以以角标的形式展示在浏览器中,更加简便直观。可以在设置中单独开启显示份额与收益选项,在编辑中输入持有的份额,可以计算出每个基金的实时估值与收益,以及总收益。</p>
<h2>如何使用</h2>
<p><strong>插件已上架Microsoft Edge扩展商店:</strong><a
href="https://microsoftedge.microsoft.com/addons/detail/kophadiajpobbfoobhclbobddkoindoi">点击跳转至Microsoft
Edge扩展商店</a></p>
<p>若因网络问题,可以下载CRX文件手动安装(非常不建议):<a href="https://github.com/x2rr/funds/releases">下载地址1</a> <a
href="https://gitee.com/rabt/funds/releases">下载地址2</a></p>
<div class="img-row">
<img style="margin: 10px;" src="https://gitee.com/rabt/Picture/raw/master/img/20200717165330.png"
alt="主界面1">
</div>
<div class="img-row">
<img style="margin: 10px;" src="https://gitee.com/rabt/Picture/raw/master/img/20200916120011.png"
alt="主界面2">
</div>
<div class="img-row">
<img style="margin: 10px;" src="https://gitee.com/rabt/Picture/raw/master/img/20200916120012.png"
alt="主界面3">
</div>
<div class="img-row">
<img style="margin: 10px;" src="https://gitee.com/rabt/Picture/raw/master/img/20200907111218.png"
alt="主界面4">
</div>
<div class="img-row">
<img style="margin: 10px;" src="https://gitee.com/rabt/Picture/raw/master/img/20200907111226.png"
alt="主界面5">
</div>
<h2>更新说明</h2>
<div id="changelog">
<div v-for="el in logList" :key="el.version">
<h3>{{el.version}}</h3>
<ul>
<li v-for="(i, ind) in el.content" :key="ind">
{{i.content}}
</li>
</ul>
</div>
</div>
<h2>隐私协议</h2>
<p><a href="https://x2rr.github.io/funds/privacy.html">点击跳转</a></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
var vm = new Vue({
el: "#changelog",
data: {
logList: []
},
mounted() {
let _this = this;
$.ajax({
type: "get",
url: "./src/common/changeLog.json",
dataType: "json",
success: function (data) {
_this.logList = data;
},
error: function () {}
});
}
});
</script>
</body>
</html>