-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.php
125 lines (117 loc) · 4.43 KB
/
web.php
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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<title>網頁版 Telegram 客戶端版本比較</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="utf-8">
<link href="//img.sean.taipei/2018/01/telegreat.png" rel="icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<meta name="description" content="自由開放的 Telegram 在各平台都有數十種客戶端,各有哪些優缺點,又該如何選擇呢?">
<meta name="image" content="https://img.sean.taipei/2018/01/telegreat.png">
<meta itemprop="name" content="網頁版 Telegram 客戶端版本比較">
<meta itemprop="description" content="自由開放的 Telegram 在各平台都有數十種客戶端,各有哪些優缺點,又該如何選擇呢?">
<meta itemprop="image" content="https://img.sean.taipei/2018/01/telegreat.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="網頁版 Telegram 客戶端版本比較">
<meta name="twitter:description" content="自由開放的 Telegram 在各平台都有數十種客戶端,各有哪些優缺點,又該如何選擇呢?">
<meta name="twitter:image:src" content="https://img.sean.taipei/2018/01/telegreat.png">
<meta name="og:title" content="網頁版 Telegram 客戶端版本比較">
<meta name="og:description" content="自由開放的 Telegram 在各平台都有數十種客戶端,各有哪些優缺點,又該如何選擇呢?">
<meta name="og:image" content="https://img.sean.taipei/2018/01/telegreat.png">
<meta name="og:url" content="https://tlgr.tw/web">
<meta name="og:site_name" content="Telegram 比較站">
<meta name="og:locale" content="zh-TW">
<meta name="og:type" content="website">
<link href="style.css" rel="stylesheet">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="content">
<h1>網頁版</h1>
<table>
<thead>
<tr>
<th>版本</th>
<th>中文支援度</th>
<th>最後更新</th>
<th class="hide500">上游版本</th>
</tr>
</thead>
<tbody>
<tr>
<td>Webogram</td>
<td class="table-no">無法翻譯</td>
<td class="table-yes">2018 June</td>
<td class="table-yes hide500">獨立開發</td>
</tr>
<tr>
<td>Telegreat Web</td>
<td class="table-yes">內建完整翻譯</td>
<td class="table-yes">2018 June</td>
<td class="table-yes2 hide500">Webogram</td>
</tr>
<tr>
<td>Webogram for Devs</td>
<td class="table-no">無法翻譯</td>
<td class="table-yes">2018 June</td>
<td class="table-yes2 hide500">Webogram</td>
</tr>
</tbody>
</table>
<h2><a class="anchor" name="webogram" href="#webogram" id="webogram"><i class="anchor-icon"></i></a>Telegram Web (官方版)</h2>
<p class="comments-section">連結: <a href="https://web.telegram.org/" target="_blank">web.telegram.org</a></p>
<p>推薦指數:★★☆☆☆</p>
<div class="comp">
<div class="pros">
<h3>優點</h3>
<ol>
<li>官方出品,安全有保障</li>
<li>免安裝,方便臨時使用</li>
</ol>
</div>
<div class="cons">
<h3>缺點</h3>
<ol>
<li>無法翻譯為中文</li>
<li>缺乏許多功能</li>
</ol>
</div>
</div>
<h2><a class="anchor" name="telegreat" href="#telegreat" id="telegreat"><i class="anchor-icon"></i></a>Telegreat Web</h2>
<p>連結: <a href="https://web.telegre.at/" target="_blank">web.telegre.at</a></p>
<p>推薦指數:★★★☆☆</p>
<div class="comp">
<div class="pros">
<h3>優點</h3>
<ol>
<li>內建中文翻譯</li>
</ol>
</div>
<div class="cons">
<h3>缺點</h3>
<ol>
<li>無特色功能</li>
</ol>
</div>
</div>
<h2><a class="anchor" name="tjhorner" href="#tjhorner" id="tjhorner"><i class="anchor-icon"></i></a>Telegram for Devs</h2>
<p>連結: <a href="https://tjhorner.com/webogram/" target="_blank">tjhorner.com</a></p>
<p>推薦指數:★★☆☆☆</p>
<div class="comp">
<div class="pros">
<h3>優點</h3>
<ol>
<li>內建 API Playground 等開發功能</li>
</ol>
</div>
<div class="cons">
<h3>缺點</h3>
<ol>
<li>版本稍為落後</li>
</ol>
</div>
</div>
</div>
<?php include('footer.php'); ?>
</body>
</html>