forked from zinjtevi/zinjtevi.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1089 lines (1006 loc) · 70.8 KB
/
index.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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>ZiniTevi Official - FREE Streaming app for iOS, Android, TV</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="TOP FREE Streaming Movies, Series, TV Shows online and offline for iOS, Apple TV, Android, Chromecast, FireStick, Smart TV, PC, Laptop, Macbook.">
<meta name="keywords" content="download, movies, film, series, tvshows, smart tv, watch online, movie box, showbox, popcorn time, cotomovies, 123movies">
<meta name="robots" content="noodp,index,follow" />
<meta name="author" content="ZiniTevi">
<meta name="thumbnail" content="https://zinjtevi.github.io/fav/og-image.png" />
<meta property="og:site_name" content="ZiniTevi" />
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta http-equiv="REFRESH" content="300" />
<meta property="og:title" content="ZiniTevi Official - FREE Streaming app for iOS, Android, TV">
<meta property="og:description" content="TOP FREE Streaming Movies, Series, TV Shows online and offline for iOS, Apple TV, Android, Chromecast, FireStick, Smart TV, PC, Laptop, Macbook.">
<meta property="og:url" content="https://zinjtevi.github.io/">
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:image:width" content="620">
<meta property="og:image:height" content="620">
<meta property="og:image" content="https://zinjtevi.github.io/fav/og-image.png">
<link rel="canonical" href="https://zinjtevi.github.io/" />
<link rel="apple-touch-icon" sizes="180x180" href="https://zinjtevi.github.io/fav/apple-icon-180x180.png">
<link rel="apple-touch-icon" sizes="57x57" href="https://zinjtevi.github.io/fav/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="https://zinjtevi.github.io/fav/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://zinjtevi.github.io/fav/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://zinjtevi.github.io/fav/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://zinjtevi.github.io/fav/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://zinjtevi.github.io/fav/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="https://zinjtevi.github.io/fav/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://zinjtevi.github.io/fav/apple-icon-152x152.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://zinjtevi.github.io/fav/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://zinjtevi.github.io/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://zinjtevi.github.io/fav/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://zinjtevi.github.io/fav/favicon-16x16.png">
<link rel="manifest" href="https://zinjtevi.github.io/fav/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="https://zinjtevi.github.io/fav/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Font -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/brands.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.15.0/css/mdb.min.css" rel="stylesheet">
<!-- Themify Icons -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="css/addtohomescreen.css">
<!-- Main css -->
<link href="css/style.css?r=153445634563" rel="stylesheet">
<style>
.howto, .howto:hover {
background-color: #000;
width: 26px;
height: 26px;
display: inline-table;
text-align: center;
line-height: 26px;
border-radius: 25px;
color: #fff;
text-decoration: none;
}
</style>
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-analytics.js"></script>
<script>
var _0x77af=["\x41\x49\x7A\x61\x53\x79\x42\x77\x48\x48\x47\x49\x5A\x68\x38\x4B\x5A\x34\x43\x42\x4A\x65\x30\x79\x5A\x7A\x64\x43\x73\x76\x52\x2D\x58\x6A\x56\x79\x6E\x45\x30","\x7A\x69\x6E\x69\x74\x65\x76\x69\x2D\x77\x65\x62\x2E\x66\x69\x72\x65\x62\x61\x73\x65\x61\x70\x70\x2E\x63\x6F\x6D","\x68\x74\x74\x70\x73\x3A\x2F\x2F\x7A\x69\x6E\x69\x74\x65\x76\x69\x2D\x77\x65\x62\x2E\x66\x69\x72\x65\x62\x61\x73\x65\x69\x6F\x2E\x63\x6F\x6D","\x7A\x69\x6E\x69\x74\x65\x76\x69\x2D\x77\x65\x62","\x7A\x69\x6E\x69\x74\x65\x76\x69\x2D\x77\x65\x62\x2E\x61\x70\x70\x73\x70\x6F\x74\x2E\x63\x6F\x6D","\x38\x38\x30\x31\x32\x36\x30\x39\x31\x33\x32\x33","\x31\x3A\x38\x38\x30\x31\x32\x36\x30\x39\x31\x33\x32\x33\x3A\x77\x65\x62\x3A\x38\x36\x37\x66\x34\x35\x30\x62\x63\x39\x31\x63\x66\x30\x62\x65\x36\x35\x66\x63\x31\x65","\x47\x2D\x4A\x46\x4D\x32\x31\x4A\x51\x36\x46\x4B","\x69\x6E\x69\x74\x69\x61\x6C\x69\x7A\x65\x41\x70\x70","\x61\x6E\x61\x6C\x79\x74\x69\x63\x73"];var firebaseConfig={apiKey:_0x77af[0],authDomain:_0x77af[1],databaseURL:_0x77af[2],projectId:_0x77af[3],storageBucket:_0x77af[4],messagingSenderId:_0x77af[5],appId:_0x77af[6],measurementId:_0x77af[7]};firebase[_0x77af[8]](firebaseConfig);firebase[_0x77af[9]]()
</script>
</head>
<body>
<header>
<div class="container mt-5">
<h1>ZiniTevi</h1>
<p class="tagline mb-4">App for Streaming Movies, Series on iPhoneOS / iPadOS / Android Phone / Android Box devices. It will be more wonderful when you want to watch on tv with your family as Apple TV, Smart TV, FireStick, Chromecast, Roku, MiBox, PlayStation, Xbox, PC, Laptop, etc ...</p>
<div class="row justify-content-center">
<a class="btn btn-deep-orange" style="display:block;" target="_blank" href="https://zinjtevi.github.io/donate.html">Please Donate ME!</a>
</div>
</div>
</header>
<div class="section">
<div class="container">
<div class="row">
<div class="col-12 col-sm-6 col-lg-3">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header">iOS</div>
<a href="#install-app-for-ios" title="Download ZiniTevi for iOS">
<div class="card-body text-center">
<h6 class="card-title text-white">iPhone / iPad.</h6>
<p class="card-text">
No Jailbreak
</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="card bg-light mb-3" style="max-width: 18rem;">
<div class="card-header">iOS</div>
<a href="#jailbreak" title="Download ZiniTevi for iOS">
<div class="card-body text-center">
<h6 class="card-title text-body">iPhone / iPad</h6>
<p class="card-text">
Jailbreak
</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="card text-white bg-success mb-3" style="max-width: 18rem;">
<div class="card-header">Android</div>
<a href="#install-app-for-android" title="Download ZiniTevi for Android / FireStick">
<div class="card-body text-center">
<h6 class="card-title text-white">Android / FireStick</h6>
<p class="card-text">
</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="card text-body bg-info mb-3" style="max-width: 18rem;">
<div class="card-header">Computer</div>
<a href="#how-to-install-pc-laptop" title="Download ZiniTevi for PC / Laptop / MacOS">
<div class="card-body text-center">
<h6 class="card-title text-body">PC / Laptop / MacOS</h6>
<p class="card-text">
</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="section-title">
<h3>App Screenshots</h2>
</div>
<div class="row monica">
<div class="col-12 monica__slider">
<div class="monica__slide">
<img src="images/screen1.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen2.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen3.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen4.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen5.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen6.png" alt="screenshot" class="">
</div>
<div class="monica__slide">
<img src="images/screen7.png" alt="screenshot" class="">
</div>
</div>
</div>
</div>
</div>
<div class="section" id="recommend">
<div class="container">
<div class="row">
<div class="col-12 col-lg-12">
<h4>Strongly recommend that you install the app <a href="https://1.1.1.1" target="_blank">https://1.1.1.1</a>:</h4>
<ul>
<li>Play stream faster.</li>
<li>Security and privacy.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="section" id="communications">
<div class="container">
<div class="section-title">
<h3>Communications</h3>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<p class="mb-0">For you have a bug or an idea</p>
<p><a href="https://t.me/joinchat/O-3uKhRt22WV8OYOBkq20w" target="_blank" class="btn btn-info"> <i class="fab fa-telegram"></i>ZiniTevi Group</a></p>
<p></p>
<p class="mb-0">We will post updates or new features</p>
<p><a href="https://t.me/joinchat/AAAAAE7ElKdKTI_uRMHIIw" target="_blank" class="btn btn-info"><i class="fab fa-telegram"></i> ZiniTevi Channel</a></p>
</div>
</div>
</div>
</div>
<div class="section" id="donation" style="display: none;">
<div class="container">
<div class="section-title">
<h3>Please Donate to Me!</h3>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<p>We don't use this account to receive money from sellings however we greatly appreciate your donation. It doesn't cover the cost, but I do stay awake while improving the app. Thank you!</p>
<p><a href="https://www.paypal.com/donate?business=58ECH83P3F5EG&no_recurring=1¤cy_code=USD" target="_blank"><img src="images/donate.png" width="200px" /></a></p>
<p></p>
</div>
</div>
</div>
</div>
<div class="section" id="features">
<div class="container">
<div class="section-title">
<h3>App features</h3>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<ul>
<li>Play video online and offline.</li>
<li>Download multiple videos in background mode.</li>
<li>Stream video to Google's Chromecast, Airplay (Apple TV), Smart TV, Android TV Box, FireStick, Web Browser (PC, Laptop, Smart TV), UPnP, DLNA.</li>
<li>Add to favorites list.</li>
<li>Save to watched list.</li>
<li>Caption in video with all languages on over the world.</li>
<li>Trakt.tv to sync watched and favorites list to the cloud.</li>
<li>Picture in picture mode that plays video while on the Home Screen</li>
</ul>
</div>
</div>
</div>
</div>
<div class="section" id="installation">
<div class="container">
<div class="section-title">
<h3>Installation</h3>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<h4 id="install-app-for-ios">1. iOS (Works on iOS 10+)</h4>
<div class="card mb-4" style="display:none;">
<div class="card-header">
- <a href="https://zinjtevi.github.io/#how-to-switch-off-limit-ad-tracking">How to Switch Off 'Limit Ad Tracking' for iOS?</a>
</div>
</div>
<ul>
<!--Begin: AltStore -->
<li class="font-weight-bold" id="altstore">AltStore: (Need Computer)</li>
<ul>
<li><a href="https://zinjtevi.github.io/app/zinitevi.ipa">Download iPA</a></li>
<li><a href="https://altstore.io/" target="_blank">Download AltStore</a></li>
<li><a href="altstore://install?url=https://zinjtevi.github.io/app/zinitevi.ipa" target="_blank">Install via AltStore</a></li>
</ul>
<!--End: AltStore -->
<li class="font-weight-bold" style="display: none;">No ADS:</li>
<ul style="list-style: none;display: none;">
<li><a class="btn btn-elegant" href="javascript:;" data-toggle="modal" data-target="#how-to-download-app-ad-free"> JOIN Membership</a></li>
</ul>
<!--Begin: Testflight -->
<!--
<li class="font-weight-bold">No Revoke, No Jailbreak: (<span style="color:red;">FREE</span> for iOS devices - <strong style="color:red;">Recommend</strong>).</li>
<div class="spinner-border" role="status">
<span class="visually-hidden"></span>
</div>
<ul style="list-style: none; display: none;" class="mb-4 tf">
<li id="no-revoke-no-jailbreak" class="openlink">
<p style="color:red;">Please open Testflight app first</p>
<a href="" class="btn btn-warning" target="_blank" rel="noreferrer"> <i class="fab fa-apple"></i> Download ZiniTevi<br/>(No Revoke)</a> <a href="javascript:;" data-toggle="modal" data-target="#how-to-install-zinitevi-no-revoke-no-jailbreak" class="howto">?</a>
</li>
<li id="no-revoke-no-jailbreak" class="announce">
<div class="col-lg-4 bg-light rounded pt-2 pb-1 text-center d-none">
<p class="mb-0 text-uppercase" style="font-weight: bold;">We'll update in</p>
<p class="mb-0" id="countdown" style="font-size: 30px;font-weight: bold;">loading...</p>
</div>
<span class="wait">(Will be updated soon)</span>
</li>
</ul>
-->
<!--End: Testflight -->
<!--Begin: Enterprise -->
<li class="font-weight-bold">No Jailbreak:</li>
<div class="spinner-border" role="status">
<span class="visually-hidden"></span>
</div>
<ul class="en wait mb-4" style="display: none;list-style: none">
<li>
<span >(Will be updated soon)</span>
</li>
</ul>
<ul class="en openlink" style="display: none;list-style: none;">
<!-- <p class="font-weight-bold" style="color:red;">Limit installs per day.</p> -->
<p class="p-4" style="background-color: #aaaaaa;color: #fff;">
Apple can revoke app at any time and you won't be able to open it or display an alert "Unable to Verify App".<br/>We recommend you to follow these steps to avoid revoking within 3 weeks.
<!-- <br/><a href="javascript:;" data-toggle="modal" data-target="#how-to-install-zinitevi-no-jailbreak">🔥 How to install app?🔥</a> -->
<br/><a href="javascript:;" data-toggle="modal" data-target="#how-to-avoid-apple-revoking">🔥 How to avoid Apple revoking?🔥</a>
</p>
<li id="no-jailbreak">
<a class="btn btn-elegant" href="javascript:;" data-toggle="modal" data-target="#how-to-install-zinitevi-no-jailbreak"> <i class="fab fa-apple"></i> Download</a>
</li>
</ul>
<ul class="en openlink d-none" style="display: none;">
<li>OR scan <strong>QRCode</strong>:
<ul>
<li>Launch the <b>Camera</b> app on your iPhone or iPad</li>
<li>Point it at the <b>QRCode</b></li>
<li>Look for the <b>notification banner</b> at the top of the screen</li>
<li>Tap the <b>notification banner</b> to trigger action</li>
<li><a href="https://zinjtevi.github.io/#how-to-trust-app">How to trust app?</a></li>
</ul>
<!-- <img src="https://1.bp.blogspot.com/-JonjaXdqeSo/XZmzIIADOlI/AAAAAAAAALQ/J1eT-JoEQt00AUDTWS5rX-xDfTpZR4BFwCNcBGAsYHQ/s1600/zinitevi_qrcode.png" /> -->
<img src="https://zinjtevi.github.io/images/ziniteviapp.png" class="img-thumbnail" style="width:200px;" />
</li>
</ul>
<!--End: Enterprise -->
<!--Begin: Signing Service -->
<li class="font-weight-bold">No Revoke: (Payment for signing service is required).</li>
<ul style="list-style: none;">
<li><a href="https://builds.io/apps/zinitevipp?aid=1025569" target="_blank" class="btn peach-gradient">Build Store <br/>($14.99 / Device / Year)</a></li>
<li><a href="https://m.pandahelp.vip/?s=ZiniTevi" target="_blank" class="btn blue-gradient">Panda Helper <br/>($19.99 / Device / Year)</a></li>
</ul>
<!--Begin: Signing Service -->
<!--Begin: Jailbreak -->
<li class="font-weight-bold" id="jailbreak">Jailbreak:</li>
<ul>
<li>You can <a href="cydia://url/https://cydia.saurik.com/api/share#?source=https://zinjtevi.github.io/repo&package=jb.zini.tevi">click this link</a> directly from your jailbroken iPhone or iPad to be taken directly to the package on Cydia without adding the repo.</li>
</ul>
<p>OR</p>
<ul style="display:block;">
<li>1. Open Cydia app from your jailbreak device.</li>
<li>2. Go to Tab Sources / Edit / Add.</li>
<li>3. Enter Cydia/APT URL: <strong><a href="https://zinjtevi.github.io/repo" target="_blank">https://zinjtevi.github.io/repo</a></strong></li>
<li>4. Tap Add Source to add ZiniTevi repo to your list of Cydia sources.</li>
<li>5. Tap ZiniTevi Repo Origin / Tweaks / ZiniTevi / Install / Confirm.</li>
</ul>
<!--End: Jailbreak -->
</ul>
</div>
<div class="col-12 col-lg-12">
<h4 id="install-app-for-android">2. Android Phone / Android Box / FireStick (Works on Lollipop and above)</h4>
<!-- <div class="card mb-4">
<div class="card-header">
- <a href="https://zinjtevi.github.io/#how-to-install-android">How to install ZiniTevi for Android, Android Box?</a><br/>
- <a href="https://zinjtevi.github.io/#how-to-install-fire-tv-stick">How to install ZiniTevi for Fire TV Stick?</a>
</div>
</div> -->
<p class="ml-4"><a href="https://hipomovie.github.io/" target="_blank" class="btn btn-success btn-android"><i class="fab fa-google-play"></i> Download ZiniTevi APK</a></p>
</div>
<!-- Begin: Appstore -->
<div class="col-12 col-lg-12">
<h3>App Stores</h3>
<p style="color:gray;">Partners help us distribute apps. You can also install the app here:</p>
<div class="row no-gutters ml-5">
<div class="col-3 col-sm-1 text-center">
<img src="https://www.pandahelp.vip/asset/images/logo.png" style="width:60px;" />
</div>
<div class="col-9 col-sm-11">
<a href="https://www.pandahelp.vip/app/10015050?from=zinitevi" target="_blank" class="pl-0 pt-0">Panda Helper</a>
<p class="pl-0"><span class="badge-warning badge">Free</span></p>
</div>
</div>
<div class="row no-gutters ml-5">
<div class="col-3 col-sm-1 text-center">
<img src="http://www.cokernutx.com/coker/img/icon.png" style="width:60px;" />
</div>
<div class="col-9 col-sm-11">
<a href="https://www.cokernutx.com/app_detail/detail/ZiniTevi" target="_blank" class="pl-0 pt-0">CokernutX</a>
<p class="pl-0"><span class="badge-warning badge">Free</span></p>
</div>
</div>
</div>
<!-- End: Appstore -->
</div>
</div>
</div>
<div class="youtube review" id="youtube-review">
<div class="container">
<div class="section-title">
<h3>Youtube Review</h3>
</div>
<div class="row monica mt-0">
<div class="col-12 monica__slider_youtube">
<div class="monica__slide">
<iframe src="https://www.youtube.com/embed/S40OdXGiQFY" rel="0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="monica__slide">
<iframe src="https://www.youtube.com/embed/9IArxUekdqY" rel="0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="how-to-download-app-ad-free" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Download ZiniTevi Ad-Free</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>You need to donate to us via Patreon. Follow these steps below:</p>
<p class="font-weight-bold ml-4">Patreon is a membership platform, your membership will auto-renew on the first of each month until canceled.
Don't worry, when you have joined and are a Patron (ZiniVIP),
you can cancel auto-renew at any time on your membership page at <a href="https://www.patreon.com/pledges" target="_blank" ref="nofollow">https://www.patreon.com/pledges</a> and still have full benefits.
</p>
<ul style="display: block;">
<li>Step 1: JOIN <b><a href="https://www.patreon.com/ziniapp" target="_blank">ZiniVIP</a></b> at, <b>please read and understand the benefits of the level you will be joining.</b></li>
<li>Step 2: Open <b><a href="https://www.patreon.com/posts/62635051" target="_blank">this post</a></b> to get next steps.</li>
<li>Step 3: DM <b><a href="https://t.me/ZiniTevi">https://t.me/ZiniTevi</a></b> the email entered to get invitation to confirm.</li>
<li>Step 4: We will email you with a link to install app within a day after we confirm the successful.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="how-to-install-zinitevi-no-jailbreak" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Download ZiniTevi</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-12 col-lg-12">
<!-- <p id="how-to-install-zinitevi-no-jailbreak"><strong>No Jailbreak</strong></p> -->
<ul style="list-style: none;">
<li>
<p>1. Remove an old app, installing an existing app will prevent you from opening the app on <span class="font-weight-bold">the same certificate</span>. You can only reset factory device to fix this problem.</p>
<p class="font-weight-bold">* Don't remove apps installed from Testflight </p>
<image src="https://zinjtevi.github.io/images/step0.png" class="img-thumbnail" style="width:300px;" />
</li>
<li class="mt-4">
<p>2. Open <a href="https://zinjtevi.github.io/#install-app-for-ios">this link</a> in Safari on iOS device and press <b>DOWNLOAD button</b></p>
</li>
<li class="mt-4">
<p>3. You should have seen a popup proposing to install app.</p>
<image src="https://zinjtevi.github.io/images/step1.png" class="img-thumbnail" style="width:300px;" />
</li>
<li class="mt-4">
<p>4. Go back to Home Screen. In a few seconds, you should see the icon of the app somewhere and a progress indicator.</p>
<image src="https://zinjtevi.github.io/images/step2.png" class="img-thumbnail" style="width:150px;" />
</li>
<li class="mt-4">
<p>5. Go to <span class="font-weight-bold">Settings > General > Profiles & Device Management > [Profile Name] > Trust > Trust</span>.</p>
<ul>
<li><image src="https://zinjtevi.github.io/images/step3.png" class="img-thumbnail" style="width:300px;"/></li>
<li><image src="https://zinjtevi.github.io/images/step4.png" class="img-thumbnail" style="width:300px;"/></li>
<li><image src="https://zinjtevi.github.io/images/step5.png" class="img-thumbnail" style="width:300px;"/></li>
<li><image src="https://zinjtevi.github.io/images/step6.png" class="img-thumbnail" style="width:300px;"/></li>
</ul>
</li>
<li class="mt-4">
<p>
6. Open app and enjoy. <b>If you can't open it or display an alert "Unable to Verify App", you can just reset factory your device or wait for app with a new certificate. In order not to have this problem for the next time, please do the following the steps
<br/><a href="javascript:;" data-toggle="modal" data-target="#how-to-avoid-apple-revoking">🔥 How to avoid Apple revoking?🔥</a></b>
</p>
</li>
<li class="mt-4 download">
<p class="font-weight-bold" >Video: How to install and avoid revoking app?</p>
<p>
<video width="640" height="320" controls >
<source src="https://raw.githubusercontent.com/ZiniTevi/movieapps/main/video/dnscloak.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</p>
<div class="col-12 app" style="display:none;">
<p class="font-weight-bold" style="color: red;">Please install only one, next if there is an error</p>
<div class="row pt-2 pb-2 border-bottom">
<a class="btn btn-elegant waves-effect waves-light" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/zinjtevi/zinjtevi.github.io/main/app/app.plist" > <i class="fab fa-apple"></i> Install</a>
</div>
</div>
<div class="col-12 list app" style="display:none;">
<div class="row pt-2 pb-2 border-bottom">
<div class="col-6 date font-weight-bold pt-4"></div>
<div class="col-6 text-end"><a href="" class="btn btn-dark"> <i class="fas fa-cloud-download-alt"></i> Download</a></div>
</div>
</div>
<div class="col-12 text" style="display:none;">
<p>Sorry. You can't download app now. We will update soon.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="how-to-avoid-apple-revoking" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">How to avoid Apple revoking?</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="font-weight-bold app"id="dnscloak">* This guide is only for devices that have been certified for trusted app in Settings and can still open app.
You need to install zinitevi app and trust certificate from Settings of your device before enabling dnscloak, that mean when you are using app normally and not protected by dnscloak,
one day app gives a "Unable to Verify App" message then Apple revoked this certificate, what you need to do:<br/>
<ul>
<li>
Delete app and wait for it to be signed by new certificate and now install dnscloak and enable it.
</li>
<li>
Reset to factory device and reinstall app with dnscloak is enabled.
</li>
</ul>
</p>
<!-- Collapsed content -->
<div class="mt-3 mb-4">
<div class="row" id="apple-revoking-step-1">
<div class="col-12 col-lg-12">
<p>1. Disable proxy on your iOS device, go to <b>Settings / touch on WiFi / touch "i" next to the WiFi connection / scroll down to HTTP PROXY / set Configure Proxy to Off</b>.</p>
<image src="images/dns_0.png" class="img-thumbnail" style="width:300px;" />
</div>
</div>
<div class="row mt-4" id="apple-revoking-step-2">
<div class="col-12 col-lg-12">
<p>2. Download <a class="font-weight-bold" href="https://apps.apple.com/app/id1452162351" target="_blank">DNSCloak</a> from AppStore</p>
</div>
</div>
<div class="row" id="apple-revoking-step-3">
<div class="col-12 col-lg-12">
<p>3. Download <a href="#" class="apple-revoking font-weight-bold">AppleRevoking.txt</a> to your iOS device.</p>
</div>
</div>
<div class="row" id="apple-revoking-step-4">
<div class="col-12 col-lg-12">
<p>4. Open <b>DNSCloak app</b></p>
</div>
</div>
<div class="row" id="apple-revoking-step-5">
<div class="col-12 col-lg-12">
<p>5. Tap on menu in the left corner. In DNSCloak Settings turns on <b>"Connect on Demand"</b>.</p>
<image src="images/dns_1.png" class="img-thumbnail" style="width:300px;" />
<image src="images/dns_2.png" class="img-thumbnail" style="width:300px;" />
</div>
</div>
<div class="row mt-4" id="apple-revoking-step-6">
<div class="col-12 col-lg-12">
<p>6. Turn on <b>"Enable Blacklist"</b>, a file menu will open and select the earlier downloaded file <b>"AppleRevoking.txt"</b></p>
<image src="images/dns_3.png" class="img-thumbnail" style="width:300px;" />
<image src="images/dns_3.1.png" class="img-thumbnail" style="width:300px;" />
</div>
</div>
<div class="row mt-4" id="apple-revoking-step-7">
<div class="col-12 col-lg-12">
<p>7. Go back to main app and select <b>"a-and-a" / "Use this server"</b></p>
<p class="font-weight-bold">* You need to trust the app before doing this or tap "Stop using this server" / trust app from Settings / "Use this server"</p>
<image src="images/dns_4.png" class="img-thumbnail" style="width:300px;" />
</div>
</div>
<div class="row mt-4">
<div class="col-12 col-lg-12">
<p class="font-weight-bold" style="color: red;">Please check the following steps to know it's working perfectly</p>
<ul>
<li>
<p>Your iOS device Open <b>Settings / General / VPN & Device Management / VPN / make sure VPN is Enable from DNSCloak app, touch "i" on DNSCloak row / enable "Connect On Demand"</b></p>
<image src="images/dns_6.png" class="img-thumbnail" style="width:300px;" />
<image src="images/dns_6.1.png" class="img-thumbnail" style="width:300px;" />
</li>
<li>
<p>Open safari / enter <b>ppq.apple.com</b>, make sure black page with text: <b>Safari cannot open the page because the server cannot be found</b>.</p>
<image src="images/dns_7.png" class="img-thumbnail" style="width:300px;" />
</li>
</ul>
</div>
</div>
<div class="row mt-4" id="apple-revoking-step-8">
<div class="col-12 col-lg-12">
<p>8. Now swipe up to close DNSCloak app to <b>keep it running on background</b></p>
<p class="font-weight-bold" style="color: red;">* You can close DNSCloak but must keep VPN connection.</p>
</div>
</div>
<div class="row mt-4">
<p class="font-weight-bold" >Video: How to install and avoid revoking app?</p>
<p>
<video width="640" height="320" controls >
<source src="https://raw.githubusercontent.com/ZiniTevi/movieapps/main/video/dnscloak.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</p>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="how-to-install-zinitevi-no-revoke-no-jailbreak" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Install ZiniTevi from Testflight</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<ul style="display: block;">
<li><a href="https://apps.apple.com/app/id899247664" target="_blank">Install TestFlight</a> in Safari on iOS device</li>
<li>Tap on <a href="https://zinjtevi.github.io/#no-revoke-no-jailbreak">HERE</a> on your iOS device.</li>
<li>Tap View in TestFlight or Start Testing; or tap Install or Update for the app</li>
<li>Installation will then be performed in the background, check the icons on your devices home screen, you should see the icon of the app somewhere and a progress indicator.</li>
<p><iframe src="https://www.youtube.com/embed/9IArxUekdqY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="section" id="how-to-install">
<div class="container">
<div class="section-title">
<h3>How to install?</h3>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<h4 id="how-to-install-pc-laptop">ZiniTevi for PC / Laptop / MacOS</h4>
<p>Wifi Direct inbuilt on app is compatible with web browsers.</p>
<ul>
<li>You need to install the app on iOS or Android device.</li>
<li>Now play a video you are going to watch. At player screen, press WiFi icon on top bar.</li>
<li>Enter the link shown in the popup screen into the web browser.</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-12">
<h4 id="how-to-install-zinitevi-google-chromecast">Google's Chromecast, Smart TV, Roku, Mibox, etc...</h4>
<p>First, ensure your Chromecast is on. If you’ve connected it to the USB port on your TV for power, this means you’ll need to turn your TV on.</p>
<p>All your devices need to connect to the same WiFi network.</p>
<p>Some models can not be streamed video online but it will work for video offline</p>
<ul>
<li>Play a video you are going to watch. At player screen, press the Cast icon on top bar.</li>
<li>Press on the device in list for streaming video from app to it.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- <div class="section" id="faq">
<div class="container">
<div class="section-title">
<h3>FAQ</h3>
</div>
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="how-to-switch-off-limit-ad-tracking">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#body-1" aria-expanded="false" aria-controls="collapseTwo">
How to Switch Off 'Limit Ad Tracking' for iOS
</button>
</h2>
</div>
<div id="body-1" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<p>Ad Tracking on your iOS device allows our partners to confirm that it's you who installed the app. In other words, Ad Tracking helps us give you the credits.</p>
<p>Go to Settings / Privacy / Advertising / Turn OFF Limit Ad Tracking</p>
<div class="ml-5">
<p>1. Sign out your Apple ID</p>
<p>2. Limit Ad Tracking is greyed out</p>
<p class="ml-5"><img src="https://4.bp.blogspot.com/--gyf2GVsWmc/Wjoh5G0tdiI/AAAAAAAAArQ/7YiwheA_EmU_ctJ8zytccLCbTP3Y6SgFwCLcBGAs/s1600/Screen%2B4.2.png" class="img-responsive"></p>
<p>3. Settings / Screen Time / Content & Privacy Restrictions / Advertising / Select Allow</p>
<p>4. Go back to Settings / Privacy / Advertising / Switch it off</p>
<p>5. Repeat step 3 and select Don't Allow</p>
<p>6. Sign in your Apple ID</p>
</div>
<p>If that doesn't work for you please watch the video</p>
<div class="ml-5">
<p><iframe src="https://www.youtube.com/embed/bhkXT53d7tI?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen=""></iframe></p>
</div>
</div>
</div>
</div>
<div class="card" style="display: block;">
<div class="card-header" id="how-to-sign-ios-apps-using-cydia-impactor">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#body-2" aria-expanded="false" aria-controls="collapseTwo">
How to Sign ZiniTevi using Cydia Impactor
</button>
</h2>
</div>
<div id="body-2" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<p>Cydia Impactor is a tools to install any iOS app, especially when jailbreak is not required. You can easily install any apps in the form of .iPA file to your iOS devices.</p>
<p>Cydia Impactor is compatible with Windows, Mac OS X, and Linux</p>
<p><strong>How to Sign iOS Apps using Cydia Impactor</strong></p>
<div class="ml-5">
<p>1. Download the latest version of Cydia Impactor from <a href="http://www.cydiaimpactor.com/" target="_blank">its official site</a>. Don't forget to choose between the three supporting OS.</p>
<p>2. Locate the installer and open it. For macOS users, just "Drag to install Impactor in your Applications folder".</p>
<p>3. Connect your iOS device to the computer</p>
<p>4. Locate the .IPA file that you want to install. I recommend moving it to the Desktop.</p>
<p>5. Open Cydia Impactor, it will recognize your iPhone or iPad</p>
<p>6. Now, click on the IPA, then drag & drop it over to Impactor. If you do it right, you'll be asked to enter your Apple ID and password.</p>
<p>Once that happen, Cydia Impactor will take control of the rest. All it's going to do is verify and install the application on your iOS device.</p>
</div>
<p><strong><u>A free iTunes login credentials will only let you sign IPA apps for a week (7 days). After the certificate expired, the app will crash every time you try to open it. The solution to this problem is going through the tutorial above again</u></strong></p>
<h4>An Error Occurred While Using Cydia Impactor</h4>
<p>That's normal. Usually, the displayed popup should tell you what went wrong.</p>
<p><img src="https://2.bp.blogspot.com/-EIWGiSEKV-4/XMLd25mgoNI/AAAAAAAAAHk/dSWVCfh43HoLJpIRgZGw_mjyY7R7hzFbgCLcBGAs/s400/error-cydia-impactor.png" class="img-responsive"></p>
<p>It means you have Two-factor authentication enabled for your Apple ID and you to need to generate an app-specific password instead of using your default iTunes password. To obtain an app-specific password, sign in <a href="https://appleid.apple.com/account/manage">to here</a>, scroll down toward the middle of the page, and click on "Generate Password…". Give it a name and click Create.</p>
<p><img src="https://1.bp.blogspot.com/-z2g6f77SfIk/XMLeXRgVpWI/AAAAAAAAAHs/_rM_gmbOD1oOLxdrQMf2f7xI132GdUhZgCLcBGAs/s1600/generate-app-specific-password.png" class="img-responsive"></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="how-to-sign-ios-apps-using-altsigner">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#body-3" aria-expanded="false" aria-controls="collapseTwo">
How to Sign ZiniTevi using AltSigner
</button>
</h2>
</div>
<div id="body-3" class="collapse" aria-labelledby="headingFour" data-parent="#accordionExample">
<div class="card-body">
<p>AltSigner is a new Windows software allowing you to sign IPA files using the free Apple Certificate working without revokes for 7 days.</p>
<p>You don't need to jailbreak and won't lose data due to being revoked</p>
<p>The IPA files signed by AltSigner can only be installed on the same Apple ID and UDID as when signed. Every 7 days after signing, it's required to connect your iPhone to your PC and repeat the signing process, however, you do not have to delete the apps. The applications will be not revoked and after re-signing you will gain access to all saves and related files.</p>
<p>IPA signed by AltSigner can only be installed on your iOS device with a system version lower than iOS 13.3.1. If your iOS device is upgraded to iOS 13.3.1 or later, the IPA that has been successfully signed cannot be installed.</p>
<p><strong>Prepared items:</strong></p>
<div class="ml-5">
<p>1. Apple ID (account & password).</p>
<p>2. Device UDID</p>
<p>3. IPA file, you can download file at <a href="https://zinjtevi.github.io/#altsigner">HERE</a></p>
</div>
<p><strong>How to use AltSigner</strong></p>
<div class="ml-5">
<p>1. Download <a href="http://qd.appdown.info/qd/altsignerqd/altsigner_1.0.0.0/AltSigner_Setup_1.0.0.0_32bit.exe">AltSigner</a> and install it.</p>
<p>2. Download <a href="https://www.apple.com/itunes/" target="_blank">iTunes</a> and install. If errors appear during the installation of iTunes. Please uninstall iTunes from your computer completely and remove its related components. Then reinstall the latest version of iTunes.</p>
<p>3. Open AltSigner and input your Apple ID with account and password.</p>
<p>4. Connect your device to a computer via USB</p>
<p>5. Input device <a href="https://get.udid.io/" target="_blank">UDID</a>.</p>
<p>6. Choose ZiniTevi.ipa to sign by clicking Browse.</p>
<p>7. Click 'Start' and wait for signing progress complete. This process will take several minutes, please be patient.</p>
<p>8. Tap on Browse button, The folder holding the signed IPA will open. You can easily find the signed IPA.</p>
</div>
<p><u>If your Apple ID has Two-Factor Authentication turned on, you will need to additionally enter a six-digit verify code provided by Apple.</u></p>
<p><u>If the signing process fails multiple times, open the AltSigner Settings, clear the cache and try again.</u></p>
<p><strong>AltSigner only provides the signing function, but does not provide the installation function. So after signing, we need to use other tools for installation.</strong></p>
<div class="ml-5">
<p>1. Download <a href="http://url.3u.com/zmAJjyaa">3uTools</a>.</p>
<p>2. Launch 3uTools, and connect your iPhone to your computer with USB cable.</p>
<p>3. Tap iDevice / Apps on the left side. Here, you can see the apps you have installed on your iDevice</p>
<p>4. Tap import & install ipa or drag signed ZiniTevi.ipa file directly to 3uTools.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<a href="#communications" class="btn btn-deep-orange btn-floating btn-lg"
id="btn-back-to-top" style="position: fixed;bottom: 60px;right: 0px;z-index: 1;">
<i class="fas fa-question-circle"></i>
</a>
<!-- Footer -->
<footer class="page-footer font-small pt-4">
<!-- Footer Links -->
<div class="container-fluid text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mt-md-0 mt-3">
<!-- Content -->
<h5 class="text-uppercase">ZiniTevi app</h5>
<p>Download ZiniTevi app for FREE</p>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none pb-3">
<!-- Grid column -->
<div class="col-md-3 mb-md-0 mb-3">
<!-- Links -->
<h5 class="text-uppercase">Links</h5>
<ul class="list-unstyled">
<li>
<a href="https://zinjtevi.github.io/#install-app-for-ios" title="ZiniTevi for iOS">ZiniTevi for iOS</a>
</li>
<li>
<a href="https://zinjtevi.github.io/#install-app-for-android" title="ZiniTevi for Android / FireStick">ZiniTevi for Android / FireStick</a>
</li>
<li>
<a href="https://zinjtevi.github.io/#how-to-install-pc-laptop" title="ZiniTevi for PC / MacOS">ZiniTevi for PC / MacOS</a>
</li>
<li>
<a href="https://zinjtevi.github.io/#how-to-install-zinitevi-google-chromecast" title="ZiniTevi for Google Chromecast">ZiniTevi for Google Chromecast</a>
</li>
</ul>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 mb-md-0 mb-3">
<!-- Links -->
<h5 class="text-uppercase">Top Keywords</h5>
<a href="https://zinjtevi.github.io/" rel="follow" target="_blank" title="movie app">movie app</a>,
<a href="https://zinjtevi.github.io/#how-to-install-android" rel="follow" target="_blank" title="zinitevi apk">zinitevi apk</a>,
<a href="https://zinjtevi.github.io/#install-app-for-ios" rel="follow" target="_blank" title="zinitevi ios">zinitevi ios</a>,
<a href="https://zinjtevi.github.io/#install-app-for-ios" rel="follow" target="_blank" title="zinitevi online">zinitevi online</a>,
<a href="https://zinjtevi.github.io/#how-to-install-zinitevi-no-revoke-no-jailbreak" rel="follow" target="_blank" title="zinitevi safe">zinitevi safe</a>,
<a href="https://zinjtevi.github.io/#how-to-install-fire-tv-stick" rel="follow" target="_blank" title="zinitevi firestick">zinitevi firestick</a>,
<a href="https://zinjtevi.github.io/" rel="follow" target="_blank" title="download zinitevi">download zinitevi</a>,
<a href="https://zinjtevi.github.io/#install-app-for-android" rel="follow" target="_blank" title="zinitevi android">zinitevi android</a>,
<a href="https://zinjtevi.github.io/#how-to-install-zinitevi-no-jailbreak" rel="follow" target="_blank" title="zinitevi ++">zinitevi ++</a>,
<a href="https://zinjtevi.github.io/#mediabox-hd" rel="follow" target="_blank" title="mediabox hd">mediabox hd</a>,
<a href="https://zinjtevi.github.io/#mediabox-hd-apk" rel="follow" target="_blank" title="mediabox hd apk">mediabox hd apk</a>,
<a href="https://zinjtevi.github.io/#mediabox-apk" rel="follow" target="_blank" title="mediabox apk">mediabox apk</a>,
<a href="https://zinjtevi.github.io/#popcorn-time-apk" rel="follow" target="_blank" title="popcorn time apk">popcorn time apk</a>,
<a href="https://zinjtevi.github.io/#box-local" rel="follow" target="_blank" title="box loca ios">box loca ios</a>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">©
<a href="https://zinjtevi.github.io/"> ZiniTevi</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick.min.js"></script>
<script type="text/javascript" src="js/addtohomescreen.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.15.0/js/mdb.min.js"></script>
<script type="text/javascript" src="js/script.js?rnd=6"></script>
<script type="text/javascript">
$(document).ready(function(){
function download(filename, type, text) {
var element = document.createElement('a');
element.setAttribute('href', type + encodeURIComponent(text));
element.setAttribute('download', filename);
element.style.display = 'none';
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
};
$('.apple-revoking').click(function(){
download("AppleRevoking.txt", "data:text/plain;charset=utf-8,", "ocsp.apple.com\nocsp2.apple.com\nppq.apple.com");
return false;
});
var starTime = new Date().getTime();
$('.list').on('click', '.btn', function() {
if(new Date().getTime() - starTime >= 1000*60*5) {
alert('This page needs to be reloaded before you can download app. Reload the page and try again.');
window.location = window.location.href;
return false;
}
});
var row = $('.download .list > .row');
$('.download .list > .row').remove();
function getLocalDateTime(s) {
var d = new Date(Date.parse(s));
var options = { year: 'numeric', month: 'long', day: 'numeric' };
return d.toLocaleString("en-US", options) + ' ' + d.toLocaleTimeString();
};
var rotate = function(l, className, handleOnTime, handleOutOfList) {
var list = l;
var cursor = 0;
var timer = setInterval(function() {
var currentTime = new Date().getTime();
for(var i=cursor;i<list.length;i++){
var previousTime = new Date(Date.parse(list[i].date)).getTime();
var nextTime;
if(i+1==list.length) {
nextTime = previousTime + (1000*60*60);
} else {
nextTime = new Date(Date.parse(list[i+1].date)).getTime();
}
if(previousTime < currentTime && currentTime < nextTime) {
if(i!=cursor || i==0 ) {
handleOnTime(list[i], className);
cursor=i;
};
break;
} else {
handleOutOfList(className);
}
};
if($('.download .row').length > 0) {
$('.download .app').show();
$('.download .text').hide();
} else {
$('.download .app').hide();
$('.download .text').show();
}
},1000);
};
$.getJSON("https://zinjtevi.github.io/ds/link2.html?r=" + new Date().getTime(), function(data, status){
if(status == 'success') {
$('.spinner-border').hide();
$('.tf').show();
$('.en').show();
if(data.tf.status == true) {