forked from telegeam/daohang1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
channels.html
768 lines (674 loc) · 60.6 KB
/
channels.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
<!DOCTYPE html>
<html lang="zh-CN" class="io-grey-mode">
<head>
<script>
var default_c = "io-grey-mode";
var night = document.cookie.replace(/(?:(?:^|.*;\s*)io_night_mode\s*\=\s*([^;]*).*$)|^.*$/, "$1");
try {
if (night === "0" || (!night && window.matchMedia("(prefers-color-scheme: dark)").matches)) {
document.documentElement.classList.add("io-black-mode");
document.documentElement.classList.remove(default_c);
} else {
document.documentElement.classList.remove("io-black-mode");
document.documentElement.classList.add(default_c);
}
} catch (_) {}
</script><meta charset="UTF-8">
<meta name="renderer" content="webkit"/>
<meta name="force-rendering" content="webkit"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>频道收录 | 电报老司机</title>
<meta name="theme-color" content="#f9f9f9" />
<meta name="keywords" content="电报老司机, Telegram, TG, 电报导航, Telegram频道导航, Telegram导航, 电报导航, tglaoshiji" />
<meta name="description" content="优质的Telegram电报频道导航,发现最好的电报内容" />
<meta property="og:type" content="article">
<meta property="og:url" content="https://tglaoshiji.github.io/channels"/>
<meta property="og:title" content="频道收录 | 电报老司机">
<meta property="og:description" content="优质的Telegram电报频道导航,发现最好的电报内容">
<meta property="og:image" content="//cdn.iowen.cn/gh/owen0o0/ioStaticResources@master/screenshots/0.jpg">
<meta property="og:site_name" content="电报老司机">
<link rel="shortcut icon" href="https://tglaoshiji.github.io/wp-content/uploads/2023/05/Telegram-Logo-PNG-Image.png">
<link rel="apple-touch-icon" href="https://tglaoshiji.github.io/wp-content/uploads/2023/05/Telegram-Logo-PNG-Image.png">
<!--[if IE]><script src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/html5.min.js"></script><![endif]-->
<link rel="stylesheet" id="iconfont-css" href="/assets/css/iconfont-3.03029.1.css" type="text/css" media="all" /><meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//at.alicdn.com' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link rel='stylesheet' id='iconfont-css' href='https://tglaoshiji.github.io/wp-content/themes/onenav/css/iconfont.css?ver=4.1031' type='text/css' media='all' />
<link rel='stylesheet' id='iconfont-io-1-css' href='//at.alicdn.com/t/c/font_4071515_ft6erbw7jgk.css' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='https://tglaoshiji.github.io/wp-content/themes/onenav/css/bootstrap.min.css?ver=4.1031' type='text/css' media='all' />
<link rel='stylesheet' id='style-css' href='https://tglaoshiji.github.io/wp-content/themes/onenav/css/style.min.css?ver=4.1031' type='text/css' media='all' />
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/jquery.min.js?ver=4.1031" id="jquery-js"></script>
<script type="text/javascript" id="jquery-js-after">
/* <![CDATA[ */
/* <![CDATA[ */
function loadFunc(func) {if (document.all){window.attachEvent("onload",func);}else{window.addEventListener("load",func,false);}}
/* ]]]]><![CDATA[> */
/* ]]> */
</script>
<link rel="canonical" href="https://tglaoshiji.github.io/channels" />
<link rel="alternate" type="application/json+oembed" href="https://tglaoshiji.github.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftglaoshiji.github.io%2Fchannels" />
<link rel="alternate" type="text/xml+oembed" href="https://tglaoshiji.github.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftglaoshiji.github.io%2Fchannels&format=xml" />
<style>.customize-width{max-width:1900px}.sidebar-nav{width:220px}@media (min-width: 768px){.main-content{margin-left:220px;}.main-content .page-header{left:220px;}}</style><style>.panel-body a:not(.no-c){color:#229ed9}.panel-body a:not(.no-c):hover{color:#229ed9}a:hover,.io-grey-mode .sidebar-show,.io-grey-mode .sidebar-item>a:hover,.io-grey-mode .sidebar-item li>a:hover,.home-like:hover,
.io-grey-mode .sidebar-popup>div>ul>li>a:hover{color:#229ed9}
.header-mini-btn label:hover path{ stroke:#229ed9}
.url-card .max .tga a:not(.no-tag):hover,.card-app.card .tga a:not(.no-tag):hover{background:#229ed9}
.sidebar .url-card .card:hover{border: 1px solid #229ed9!important;}.tags i{color:#229ed9}.custom-piece_c_b{background:#229ed9!important}.custom-piece_c{color:#229ed9!important}.slider_menu[sliderTab] .anchor,.customize-menu .btn-edit,.badge-danger,.comment-list .rank,.sidebar .card-header:after{background:#229ed9}.badge-outline-primary{color:#229ed9;border:#229ed9 solid 1px}.posts-nav .page-numbers.current,.posts-nav .page-numbers:not(.dots):hover,#comments-navi>a:hover,#comments-navi>.current,.page-nav>a:hover span,.page-nav>.current span{background-color:#229ed9;box-shadow: 0px 5px 20px -3px rgba(34,158,217,.6);}
.custom-control-input:not(:disabled):active~.custom-control-label::before{background-color:rgba(34,158,217,.15);border-color:rgba(34,158,217,.15);}
.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(34,158,217,.25)}
.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#229ed9}
.custom-control-input:checked~.custom-control-label::before{border-color:#229ed9;background-color:#229ed9}
.btn-search:hover,.btn-search.current{background-color:#229ed9;box-shadow: 0 5px 20px -3px rgba(34,158,217,.6)}.btn-search.current:after{border-top-color:#229ed9}.panel-body h2,.panel-body h3 {border-color:#229ed9}.custom_btn-outline {color: #229ed9;background-color: transparent;border-color: #229ed9;}
.custom_btn-outline:hover {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.custom_btn-outline:focus, .custom_btn-outline.focus {color: #229ed9;box-shadow: 0 0 0 0 transparent!important;background-color: transparent;}
.custom_btn-outline.disabled, .custom_btn-outline:disabled {color: #229ed9;background-color: transparent!important;}
.custom_btn-outline:not(:disabled):not(.disabled):active, .custom_btn-outline:not(:disabled):not(.disabled).active,.show > .custom_btn-outline.dropdown-toggle {color: #fff;background-color: #229ed9;border-color: #229ed9;}
.custom_btn-outline:not(:disabled):not(.disabled):active:focus, .custom_btn-outline:not(:disabled):not(.disabled).active:focus,.show > .custom_btn-outline.dropdown-toggle:focus {box-shadow: 0 0 0 0 transparent!important;}
.custom_btn-d {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.custom_btn-d:hover {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.custom_btn-d:focus,.custom_btn-d.focus {color: #229ed9;background-color: #229ed9;border-color: #229ed9;box-shadow: 0 0 0 0 transparent!important;}
.custom_btn-d.disabled,.custom_btn-d:disabled {color: #229ed9;background-color:#229ed9;border-color: #229ed9;}
.custom_btn-d:not(:disabled):not(.disabled):active,.custom_btn-d:not(:disabled):not(.disabled).active{color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.custom_btn-d:not(:disabled):not(.disabled):active:focus,.custom_btn-d:not(:disabled):not(.disabled).active:focus{box-shadow: 0 0 0 0 transparent!important;}
.btn.custom_btn-d {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.btn.custom_btn-d:hover {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.btn.custom_btn-d:focus,.btn.custom_btn-d.focus {color: #229ed9;background-color: #229ed9;border-color: #229ed9;box-shadow: 0 0 0 0 transparent!important;}
.btn.custom_btn-d.disabled,.btn.custom_btn-d:disabled {color: #229ed9;background-color:#229ed9;border-color: #229ed9;}
.btn.custom_btn-d:not(:disabled):not(.disabled):active,.btn.custom_btn-d:not(:disabled):not(.disabled).active,.show > .custom_btn-d.dropdown-toggle {color: #229ed9;background-color: #229ed9;border-color: #229ed9;}
.btn.custom_btn-d:not(:disabled):not(.disabled):active:focus,.btn.custom_btn-d:not(:disabled):not(.disabled).active:focus,.show > .custom_btn-d.dropdown-toggle:focus {box-shadow: 0 0 0 0 transparent!important;}
.btn-dark:hover{background-color:#229ed9;border-color:#229ed9}
.sidebar .card .searchform input[type='submit']{border: 1px solid #229ed9;background-color:#229ed9}
.sidebar .card .searchform input[type='submit']:hover{border: 1px solid #229ed9;background-color:#229ed9}</style><!-- 自定义代码 -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-97R1H1JT38"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-97R1H1JT38');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1530351503997410"
crossorigin="anonymous"></script><!-- end 自定义代码 --><script type="text/javascript" src="/assets/js/jquery.min-3.2.1.js" id="jquery-js"></script><script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
</head>
<body class="page-template page-template-template-contribute page-template-template-contribute-php page page-id-2135 sidebar_right">
<div id="sidebar" class="sticky sidebar-nav fade">
<div class="modal-dialog h-100 sidebar-nav-inner">
<div class="sidebar-logo border-bottom border-color">
<!-- logo -->
<div class="logo overflow-hidden">
<a href="https://tglaoshiji.github.io" class="logo-expanded">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/tg-tinypng.png" height="40" class="logo-light" alt="电报老司机">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/tg-driver.webp" height="40" class="logo-dark d-none" alt="电报老司机">
</a>
<a href="https://tglaoshiji.github.io" class="logo-collapsed">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/Telegram.webp" height="40" class="logo-light" alt="电报老司机">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/Telegram.webp" height="40" class="logo-dark d-none" alt="电报老司机">
</a>
</div>
<!-- logo end -->
</div>
<div class="sidebar-menu flex-fill">
<div class="sidebar-scroll" >
<div class="sidebar-menu-inner">
<ul>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-119" class="">
<i class="iconfont icon-category icon-fw icon-lg"></i>
<span>自助搜群</span>
</a>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-7" class="" data-change="https://tglaoshiji.github.io/#term-7">
<i class="io io-telegram1 icon-fw icon-lg"></i>
<span>电报本报</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-7-10" class=""><span>电报新闻</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-7-8" class=""><span>官方频道</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-7-90" class=""><span>电报教学</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-7-114" class=""><span>第三方客户端</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-48" class="" data-change="https://tglaoshiji.github.io/#term-48">
<i class="io io-xinwen icon-fw icon-lg"></i>
<span>新闻资讯</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-48-50" class=""><span>简中新闻</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-48-49" class=""><span>国际新闻</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-48-51" class=""><span>港澳台新闻</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-48-91" class=""><span>社交媒体</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-48-95" class=""><span>自媒体</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-25" class="" data-change="https://tglaoshiji.github.io/#term-25">
<i class="io io-wangluo icon-fw icon-lg"></i>
<span>网络资源</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-25-77" class=""><span>资源聚合</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-25-26" class=""><span>云盘分享</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-25-88" class=""><span>应用发现</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-25-102" class=""><span>网站发现</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-85" class="" data-change="https://tglaoshiji.github.io/#term-85">
<i class="io io-paymentlife icon-fw icon-lg"></i>
<span>科技玩家</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-85-86" class=""><span>科技新闻(中文)</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-85-87" class=""><span>科技新闻(英文)</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-85-89" class=""><span>科技自媒体</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-85-116" class=""><span>AI应用</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-85-103" class=""><span>安全隐私</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-78" class="" data-change="https://tglaoshiji.github.io/#term-78">
<i class="io io-App icon-fw icon-lg"></i>
<span>软件App</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-78-84" class=""><span>常用App</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-104" class=""><span>常用软件</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-105" class=""><span>常用脚本</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-79" class=""><span>Windows</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-83" class=""><span>Android(中文)</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-80" class=""><span>Android(英文)</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-81" class=""><span>iOS</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-82" class=""><span>Mac</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-78-94" class=""><span>应用限免</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-60" class="" data-change="https://tglaoshiji.github.io/#term-60">
<i class="io io-yule icon-fw icon-lg"></i>
<span>影音娱乐</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-60-65" class=""><span>沙雕娱乐</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-96" class=""><span>影视</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-62" class=""><span>壁纸</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-63" class=""><span>音乐</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-61" class=""><span>游戏</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-98" class=""><span>动漫</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-97" class=""><span>Meme</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-101" class=""><span>图片</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-99" class=""><span>摄影</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-60-100" class=""><span>数字艺术</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-27" class="" data-change="https://tglaoshiji.github.io/#term-27">
<i class="io io-shuji1 icon-fw icon-lg"></i>
<span>书籍阅读</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-27-30" class=""><span>中文电子书</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-27-31" class=""><span>英文电子书</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-27-28" class=""><span>报纸杂志</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-27-29" class=""><span>有声书</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-20" class="" data-change="https://tglaoshiji.github.io/#term-20">
<i class="io io-code icon-fw icon-lg"></i>
<span>IT技术</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-20-24" class=""><span>Linux</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-20-21" class=""><span>Python</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-20-22" class=""><span>DevOps</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-20-23" class=""><span>数据科学</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-3" class="" data-change="https://tglaoshiji.github.io/#term-3">
<i class="io io-cloud-server icon-fw icon-lg"></i>
<span>VPS玩家</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-3-4" class=""><span>活动促销</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-3-6" class=""><span>补货监控</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-3-36" class=""><span>主机论坛</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-32" class="" data-change="https://tglaoshiji.github.io/#term-32">
<i class="io io-marketing_fill icon-fw icon-lg"></i>
<span>电报市场</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-32-33" class=""><span>拼车合租</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-32-34" class=""><span>二手交易</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-37" class="" data-change="https://tglaoshiji.github.io/#term-37">
<i class="io io-icon icon-fw icon-lg"></i>
<span>生活成长</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-37-92" class=""><span>生活资讯</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-37-117" class=""><span>两性情感</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-37-14" class=""><span>英语学习</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-37-13" class=""><span>润学专区</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-37-45" class=""><span>Quote</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-37-46" class=""><span>Motivation</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-38" class="" data-change="https://tglaoshiji.github.io/#term-38">
<i class="io io-wenhua icon-fw icon-lg"></i>
<span>科学文化</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-38-93" class=""><span>奇趣百科</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-39" class=""><span>历史</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-41" class=""><span>艺术</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-40" class=""><span>文学</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-43" class=""><span>科学</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-42" class=""><span>数学</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-38-44" class=""><span>心理学</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-52" class="" data-change="https://tglaoshiji.github.io/#term-52">
<i class="io io-licai icon-fw icon-lg"></i>
<span>个人理财</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-52-55" class=""><span>财经新闻</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-52-53" class=""><span>资金流动</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-52-54" class=""><span>股市投资</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-56" class="" data-change="https://tglaoshiji.github.io/#term-56">
<i class="io io-icon-safe-bluefuben icon-fw icon-lg"></i>
<span>加密货币</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-56-57" class=""><span>币圈动态</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-56-58" class=""><span>交易所</span></a>
</li>
</ul>
</li>
<li class="sidebar-item">
<a href="https://tglaoshiji.github.io/#term-115" class="" data-change="https://tglaoshiji.github.io/#term-115">
<i class="io io-TelegramLogo icon-fw icon-lg"></i>
<span>电报资源</span>
</a>
<i class="iconfont icon-arrow-r-m sidebar-more text-sm"></i>
<ul >
<li>
<a href="https://tglaoshiji.github.io/#term-115-11" class=""><span>Channel</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-115-12" class=""><span>Bot</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-115-59" class=""><span>Theme</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-115-66" class=""><span>Sticker</span></a>
</li>
<li>
<a href="https://tglaoshiji.github.io/#term-115-76" class=""><span>Emoji</span></a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="border-top py-2 border-color">
<div class="flex-bottom">
<ul>
<li id="menu-item-2138" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2135 current_page_item menu-item-2138 sidebar-item"><a href="https://tglaoshiji.github.io/channels" aria-current="page">
<i class="io io-push-outline icon-fw icon-lg"></i>
<span>频道收录</span></a></li>
<li id="menu-item-2134" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2134 sidebar-item"><a href="https://tglaoshiji.github.io/links">
<i class="io io-link1 icon-fw icon-lg"></i>
<span>友情链接</span></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="main-content flex-fill"> <div class=" header-nav">
<div id="header" class="page-header sticky">
<div class="navbar navbar-expand-md">
<div class="container-fluid p-0 position-relative">
<div class="position-absolute w-100 text-center">
<a href="https://tglaoshiji.github.io" class="navbar-brand d-md-none m-0" title="电报老司机">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/tg-tinypng.png" class="logo-light" alt="电报老司机" height="30">
<img src="https://tglaoshiji.github.io/wp-content/uploads/2023/05/tg-driver.webp" class="logo-dark d-none" alt="电报老司机" height="30">
</a>
</div>
<div class="nav-item d-md-none mobile-menu py-2 position-relative"><a href="javascript:" id="sidebar-switch" data-toggle="modal" data-target="#sidebar"><i class="iconfont icon-classification icon-lg"></i></a></div> <div class="collapse navbar-collapse order-2 order-md-1">
<div class="header-mini-btn">
<label>
<input id="mini-button" type="checkbox" checked="checked">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path class="line--1" d="M0 40h62c18 0 18-20-17 5L31 55"></path>
<path class="line--2" d="M0 50h80"></path>
<path class="line--3" d="M0 60h62c18 0 18 20-17-5L31 45"></path>
</svg>
</label>
</div>
<!-- 天气 -->
<div class="weather">
<div id="he-plugin-simple" style="display: contents;"></div>
<script>WIDGET = {CONFIG: {"modules": "12034","background": "5","tmpColor": "888","tmpSize": "14","cityColor": "888","citySize": "14","aqiSize": "14","weatherIconSize": "24","alertIconSize": "18","padding": "10px 10px 10px 10px","shadow": "1","language": "auto","fixed": "false","vertical": "middle","horizontal": "left","key": "a922adf8928b4ac1ae7a31ae7375e191"}}</script>
<script>
loadFunc(function() {
let script = document.createElement("script");
script.setAttribute("async", "");
script.src = "//widget.qweather.net/simple/static/js/he-simple-common.js?v=2.0";
document.body.appendChild(script);
});
</script>
</div>
<!-- 天气 end -->
<ul class="navbar-nav navbar-top site-menu mr-4">
</ul>
</div>
<ul class="nav navbar-menu text-xs order-1 order-md-2 position-relative">
<li class="nav-login ml-3 ml-md-4">
</li>
<li class="nav-search ml-3 ml-md-4">
<a href="javascript:" data-toggle="modal" data-target="#search-modal"><i class="iconfont icon-search icon-lg"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="placeholder"></div>
</div>
</div>
</div>
</div>
<div class="placeholder"></div>
</div>
<style type="text/css">
h3{font-size: 1.1rem;margin-top: 20px}
.contextual-callout p{font-size: 13px;}
.contextual-callout {background-color: rgba(241, 64, 75, 0.12);color: #f1404b!important;padding: 15px;margin: 10px 0 20px;border: 1px solid rgba(241, 64, 75, 0.07);border-left-width: 4px;border-radius: 3px;font-size: 1.3rem;line-height: 1.5;border-left-color: #f1404b;}
.contextual-callout>h4 {margin-bottom: 16px;text-align: center;font-size: 1rem;color:#f1404b}
.link-header h1 {font-size: 16px;font-size: 1.6rem;line-height: 30px;text-align: center;margin: 0 0 15px 0;}
.link-page {margin: 30px 0; }
</style>
<div id="content" class="container my-4 my-md-5">
<div class="content-wrap">
<div class="content-layout">
<h3 id="免责声明">免责声明</h3>
<p>本网站面向国际服务,可能包含部分敏感内容。<strong>请自觉遵守当地有关法律法规</strong>,所产生的一切后果,本网站概不负责!网站内容收集自互联网,如有内容侵犯了你的权益,请联系删除相关内容。</p>
<h3 id="提交收录">提交收录</h3>
<p>请参阅 <a href="/enroll">此处</a> 。</p>
<h3 id="合作推广">合作推广</h3>
<p>请通过 <a href="/go/?username=telegeam0bot">@telegeam0bot</a> 联系我们。</p>
<!--表单结束-->
</div>
</div>
</div><!-- .content -->
</div>
</div>
</div>
<script>
var tg_data = {
sites_img_max:"64",
post_img_max:"1024",
theme_key:"TWpBeU1USTJNemd4TWpZM0d6RS9oTmxObFZXUm9NelZhT1d4c1pHNUNTVmgyVkVkelF6VkpObUpJUVVscA==",
local : {
only_img:"只能上传图片!",
only_jpg:"图片类型只能是jpeg,jpg,png!",
timeout:"网络连接错误!",
select_file:"请选择文件!",
sites_img_max_msg:"图片大小不能超过 64 kb",
post_img_max_msg:"图片大小不能超过 1024 kb",
get_failed:"获取失败,请再试试,或者手动填写!",
get_success:"获取成功,没有的请手动填写!",
timeout2:"访问超时,请再试试,或者手动填写!",
code_error:"验证码错误!",
v_first:"请先验证!!!",
url_error:"链接格式错误!",
fill_url:"请先填写网址链接!",
v_success:"验证成功",
v_canceled:"您取消了验证!",
v_text:"验证",
}
}
</script>
<div class="main-footer footer-stick p-4 footer-type-def">
<div class="footer-inner ">
<div class="footer-text ">
<div class="footer-copyright text-xs">
Copyright © 2023 <a href="https://tglaoshiji.github.io" title="电报老司机" class="" rel="home">电报老司机</a> <br/><span id="busuanzi_container_site_pv">本站总访问量:<span id="busuanzi_value_site_pv"></span>次</span></strong </div></div>
</div>
</div>
</div><!-- main-content end -->
<footer>
<div id="footer-tools" class="d-flex flex-column">
<a href="javascript:" id="go-to-up" class="btn rounded-circle go-up m-1" rel="go-top">
<i class="iconfont icon-to-up"></i>
</a>
<a href="javascript:" id="switch-mode" class="btn rounded-circle switch-dark-mode m-1" data-toggle="tooltip" data-placement="left" title="夜间模式">
<i class="mode-ico iconfont icon-light"></i>
</a>
</div>
</footer>
<div class="modal fade search-modal" id="search-modal">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="modal-body">
<div id="search" class="s-search mx-auto my-4">
<div id="search-list" class="hide-type-list">
<div class="s-type">
<span></span>
<div class="s-type-list">
<label for="m_type-meow" data-page="home" data-id="group-c">电报</label><label for="m_type-google1" data-page="home" data-id="group-b">搜索</label> </div>
</div>
<div class="search-group group-c"><span class="type-text text-muted">电报</span><ul class="search-type"><li><input checked="checked" hidden type="radio" name="type2" data-page="home" id="m_type-meow" value="https://meow.tg/search/%s%" data-placeholder="做最懂你的TG搜索"><label for="m_type-meow"><span class="text-muted">Meow</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-mingdao" value="https://xtea.io/ts#gsc.tab=0&gsc.q=%s%&gsc.sort=" data-placeholder="名刀电报搜索"><label for="m_type-mingdao"><span class="text-muted">名刀</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-lyzem" value="https://lyzem.com/search?q=%s%" data-placeholder="IndexPost"><label for="m_type-lyzem"><span class="text-muted">Lyzem</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-telegago" value="https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0&gsc.q=%s%&gsc.sort=date" data-placeholder="Programmable Search Engine"><label for="m_type-telegago"><span class="text-muted">Telegago</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-404" value="https://telsearch.long2ice.io/search?k=%s%&t=all" data-placeholder=" Search Telegram"><label for="m_type-404"><span class="text-muted">TelSearch</span></label></li></ul></div><div class="search-group group-b"><span class="type-text text-muted">搜索</span><ul class="search-type"><li><input hidden type="radio" name="type2" data-page="home" id="m_type-google1" value="https://www.google.com/search?q=%s%" data-placeholder="谷歌两下"><label for="m_type-google1"><span class="text-muted">Google</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-bing1" value="https://cn.bing.com/search?q=%s%" data-placeholder="微软Bing搜索"><label for="m_type-bing1"><span class="text-muted">Bing</span></label></li><li><input hidden type="radio" name="type2" data-page="home" id="m_type-baidu1" value="https://www.baidu.com/s?wd=%s%" data-placeholder="百度一下"><label for="m_type-baidu1"><span class="text-muted">百度</span></label></li></ul></div> </div>
<form action="https://tglaoshiji.github.io?s=" method="get" target="_blank" class="super-search-fm">
<input type="text" id="m_search-text" class="form-control smart-tips search-key" zhannei="" autocomplete="off" placeholder="输入关键字搜索" style="outline:0" data-status="true">
<button type="submit" id="btn_search"><i class="iconfont icon-search"></i></button>
</form>
<div class="card search-smart-tips" style="display: none">
<ul></ul>
</div>
</div>
<div class="px-1 mb-3"><i class="text-xl iconfont icon-hot mr-1" style="color:#f1404b;"></i><span class="h6">热门推荐: </span></div>
<div class="mb-3">
</div>
</div>
<div style="position: absolute;bottom: -40px;width: 100%;text-align: center;"><a href="javascript:" data-dismiss="modal"><i class="iconfont icon-close-circle icon-2x" style="color: #fff;"></i></a></div>
</div>
</div>
</div>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/popper.min.js?ver=4.1031" id="popper-js"></script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/bootstrap.min.js?ver=4.1031" id="bootstrap-js"></script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/theia-sticky-sidebar.js?ver=4.1031" id="sidebar-js"></script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/lazyload.min.js?ver=4.1031" id="lazyload-js"></script>
<script type="text/javascript" id="appjs-js-extra">
/* <![CDATA[ */
var theme = {"ajaxurl":"https:\/\/tglaoshiji.github.io\/wp-admin\/admin-ajax.php","uri":"https:\/\/tglaoshiji.github.io\/wp-content\/themes\/onenav","loginurl":"https:\/\/tglaoshiji.github.io\/wp-login.php?redirect_to=https%3A%2F%2Ftglaoshiji.github.io%2Fchannels","sitesName":"\u7535\u62a5\u8001\u53f8\u673a","addico":"https:\/\/tglaoshiji.github.io\/wp-content\/themes\/onenav\/images\/add.png","order":"asc","formpostion":"top","defaultclass":"io-grey-mode","isCustomize":"0","icourl":"https:\/\/api.iowen.cn\/favicon\/","icopng":".png","urlformat":"1","customizemax":"10","newWindow":"1","lazyload":"1","minNav":"0","loading":"","hotWords":"google","classColumns":" col-2a col-sm-2a col-md-2a col-lg-3a col-xl-5a col-xxl-6a ","apikey":"TWpBeU1USTJNemd4TWpZM0d6RS9oTmxObFZXUm9NelZhT1d4c1pHNUNTVmgyVkVkelF6VkpObUpJUVVscA==","isHome":"","version":"4.1031"};
var localize = {"liked":"\u60a8\u5df2\u7ecf\u8d5e\u8fc7\u4e86!","like":"\u8c22\u8c22\u70b9\u8d5e!","networkerror":"\u7f51\u7edc\u9519\u8bef --.","selectCategory":"\u4e3a\u4ec0\u4e48\u4e0d\u9009\u5206\u7c7b\u3002","addSuccess":"\u6dfb\u52a0\u6210\u529f\u3002","timeout":"\u8bbf\u95ee\u8d85\u65f6\uff0c\u8bf7\u518d\u8bd5\u8bd5\uff0c\u6216\u8005\u624b\u52a8\u586b\u5199\u3002","lightMode":"\u65e5\u95f4\u6a21\u5f0f","nightMode":"\u591c\u95f4\u6a21\u5f0f","editBtn":"\u7f16\u8f91","okBtn":"\u786e\u5b9a","urlExist":"\u8be5\u7f51\u5740\u5df2\u7ecf\u5b58\u5728\u4e86 --.","cancelBtn":"\u53d6\u6d88","successAlert":"\u6210\u529f","infoAlert":"\u4fe1\u606f","warningAlert":"\u8b66\u544a","errorAlert":"\u9519\u8bef","extractionCode":"\u7f51\u76d8\u63d0\u53d6\u7801\u5df2\u590d\u5236\uff0c\u70b9\u201c\u786e\u5b9a\u201d\u8fdb\u5165\u4e0b\u8f7d\u9875\u9762\u3002","wait":"\u8bf7\u7a0d\u5019","loading":"\u6b63\u5728\u5904\u7406\u8bf7\u7a0d\u540e...","userAgreement":"\u8bf7\u5148\u9605\u8bfb\u5e76\u540c\u610f\u7528\u6237\u534f\u8bae","reSend":"\u79d2\u540e\u91cd\u65b0\u53d1\u9001","weChatPay":"\u5fae\u4fe1\u652f\u4ed8","alipay":"\u652f\u4ed8\u5b9d","scanQRPay":"\u8bf7\u626b\u7801\u652f\u4ed8","payGoto":"\u652f\u4ed8\u6210\u529f\uff0c\u9875\u9762\u8df3\u8f6c\u4e2d"};
/* ]]> */
</script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/app.min.js?ver=4.1031" id="appjs-js"></script>
<script type="text/javascript" id="appjs-js-after">
/* <![CDATA[ */
/* <![CDATA[ */
$(document).ready(function(){if($("#search-text")[0]){$("#search-text").focus();}});
/* ]]]]><![CDATA[> */
/* ]]> */
</script>
<script type="text/javascript" id="wp-postviews-cache-js-extra">
/* <![CDATA[ */
var viewsCacheL10n = {"admin_ajax_url":"https:\/\/tglaoshiji.github.io\/wp-admin\/admin-ajax.php","post_id":"2135"};
/* ]]> */
</script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/inc/postviews/postviews-cache.js?ver=6.4.2" id="wp-postviews-cache-js"></script>
<script type="text/javascript" src="https://tglaoshiji.github.io/wp-content/themes/onenav/js/new-post.js?ver=4.1031" id="new-post-js"></script>
<!-- 自定义代码 -->
<!-- end 自定义代码 --><script type="text/javascript" src="/assets/js/jquery.min-3.2.1.js" id="jquery-js"></script><script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v84a3a4012de94ce1a686ba8c167c359c1696973893317" integrity="sha512-euoFGowhlaLqXsPWQ48qSkBSCFs3DPRyiwVu3FjR96cMPx+Fr+gpWRhIafcHwqwCqWS42RZhIudOvEI+Ckf6MA==" data-cf-beacon='{"rayId":"836f49721d7b286a","r":1,"version":"2023.10.0","token":"267a25a42df44a61a21bb3d4c68254ed"}' crossorigin="anonymous"></script>
</body>
</html>