docs4you commited on
Commit
23388e3
·
verified ·
1 Parent(s): d3a7f46

Upload 283 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +16 -0
  2. core/css/alertbox.css +29 -0
  3. core/css/embeddaddyplayer.css +47 -0
  4. core/css/gototop.css +21 -0
  5. core/css/index.html +0 -0
  6. core/css/main.page.css +127 -0
  7. core/css/nav.and.bottom.bar.css +33 -0
  8. core/css/sidebar.css +47 -0
  9. core/games/GTA.China.Town.Wars.Install.Info.html +36 -0
  10. core/games/GTA.III.Install.Info.html +36 -0
  11. core/games/GTA.San.Andreas.Install.Info.html +36 -0
  12. core/games/GTA.San.Libery.City.Stories.Install.Info.html +36 -0
  13. core/games/GTA.Vice.City.Install.Info.html +36 -0
  14. core/games/xbox.html +12 -0
  15. core/iframes/index.html +0 -0
  16. core/iframes/nflix.html +13 -0
  17. core/iframes/onlyfools.s01.html +13 -0
  18. core/iframes/onlyfools.special1.html +4 -0
  19. core/images/Astro_Prem.png +0 -0
  20. core/images/adguard.png +0 -0
  21. core/images/beinlogo.png +0 -0
  22. core/images/coming.soon.png +3 -0
  23. core/images/cricketlogo.png +0 -0
  24. core/images/downloader.jpg +3 -0
  25. core/images/downloader1.webp +0 -0
  26. core/images/emby.logo.png +0 -0
  27. core/images/factuallogo.png +3 -0
  28. core/images/fanush.png +0 -0
  29. core/images/footy.replay.jpg +0 -0
  30. core/images/forum.png +3 -0
  31. core/images/front.end.app.icon.png +3 -0
  32. core/images/gameslogo.png +3 -0
  33. core/images/happykids.png +3 -0
  34. core/images/hub.png +0 -0
  35. core/images/inappimage.png +3 -0
  36. core/images/index.html +0 -0
  37. core/images/indexgames.png +0 -0
  38. core/images/jellyfinlogo.png +0 -0
  39. core/images/kooltv.jpg +0 -0
  40. core/images/livesportlogo.png +0 -0
  41. core/images/livetvlogo.png +0 -0
  42. core/images/movieindex.png +3 -0
  43. core/images/mx.png +0 -0
  44. core/images/now.png +0 -0
  45. core/images/nzsky.jpg +0 -0
  46. core/images/plex.png +0 -0
  47. core/images/premleaguelogo.png +0 -0
  48. core/images/proton.svg +1 -0
  49. core/images/skycinema.jpg +0 -0
  50. core/images/skysportsicon.jpeg +0 -0
.gitattributes CHANGED
@@ -33,3 +33,19 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ core/images/coming.soon.png filter=lfs diff=lfs merge=lfs -text
37
+ core/images/downloader.jpg filter=lfs diff=lfs merge=lfs -text
38
+ core/images/factuallogo.png filter=lfs diff=lfs merge=lfs -text
39
+ core/images/forum.png filter=lfs diff=lfs merge=lfs -text
40
+ core/images/front.end.app.icon.png filter=lfs diff=lfs merge=lfs -text
41
+ core/images/gameslogo.png filter=lfs diff=lfs merge=lfs -text
42
+ core/images/happykids.png filter=lfs diff=lfs merge=lfs -text
43
+ core/images/inappimage.png filter=lfs diff=lfs merge=lfs -text
44
+ core/images/movieindex.png filter=lfs diff=lfs merge=lfs -text
45
+ core/images/tnt.png filter=lfs diff=lfs merge=lfs -text
46
+ core/images/top8sites.jpg filter=lfs diff=lfs merge=lfs -text
47
+ core/images/tvseries.png filter=lfs diff=lfs merge=lfs -text
48
+ core/images/vlc.png filter=lfs diff=lfs merge=lfs -text
49
+ downloads/AdGuard-v4.9.40.Premium.apk filter=lfs diff=lfs merge=lfs -text
50
+ downloads/tv1.apk filter=lfs diff=lfs merge=lfs -text
51
+ downloads/xbox.game.pass.apk filter=lfs diff=lfs merge=lfs -text
core/css/alertbox.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .alert {
3
+ padding: 20px;
4
+ background-color: #f44336;
5
+ color: white;
6
+ opacity: 1;
7
+ transition: opacity 0.6s;
8
+ margin-bottom: 15px;
9
+ }
10
+
11
+ .alert.success {background-color: #04AA6D;}
12
+ .alert.info {background-color: #2196F3;}
13
+ .alert.warning {background-color: #ff9800;}
14
+
15
+ .closebtn {
16
+ margin-left: 15px;
17
+ color: white;
18
+ font-weight: bold;
19
+ float: right;
20
+ font-size: 22px;
21
+ line-height: 20px;
22
+ cursor: pointer;
23
+ transition: 0.3s;
24
+ }
25
+
26
+ .closebtn:hover {
27
+ color: black;
28
+ }
29
+ </style>
core/css/embeddaddyplayer.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style id='template-skin-1' type='text/css'>
2
+ body#layout header{
3
+ padding:18px;
4
+ }
5
+ body#layout header .inner{
6
+ padding:0px;
7
+ }
8
+ body#layout #header{
9
+ width:500px;
10
+ }
11
+ body#layout .textrimSearch:before{
12
+ content:'TEXTRIM v2';
13
+ border:3px solid #4267b2;
14
+ color:#4267b2;
15
+ font-size:20px;
16
+ display:block;
17
+ padding:7px 10px;
18
+ white-space:pre;
19
+ border-radius:25px;
20
+ position:absolute;
21
+ right:18px;
22
+ }
23
+ body#layout .textrimMenu:before{
24
+ content:'Edit Menu in HTML';
25
+ background-color:#4267b2;
26
+ color:#fff;
27
+ font-size:20px;
28
+ display:block;
29
+ margin:0px 18px;
30
+ padding:7px 10px;
31
+ }
32
+ body#layout .textrimBG{
33
+ display:none;
34
+ }
35
+ body#layout main{
36
+ padding:0px 18px;
37
+ margin-top:0px;
38
+ }
39
+ body#layout #main{
40
+ width:70%;
41
+ margin-right:18px;
42
+ }
43
+ body#layout #HTML1 .widget-content{
44
+ margin-bottom:0px;
45
+ background-color:#9dc9ef;
46
+ }
47
+ </style>
core/css/gototop.css ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ #myBtn {
3
+ display: none; /* Hidden by default */
4
+ position: fixed; /* Fixed/sticky position */
5
+ bottom: 20px; /* Place the button at the bottom of the page */
6
+ right: 30px; /* Place the button 30px from the right */
7
+ z-index: 99; /* Make sure it does not overlap */
8
+ border: none; /* Remove borders */
9
+ outline: none; /* Remove outline */
10
+ background-color: red; /* Set a background color */
11
+ color: white; /* Text color */
12
+ cursor: pointer; /* Add a mouse pointer on hover */
13
+ padding: 15px; /* Some padding */
14
+ border-radius: 10px; /* Rounded corners */
15
+ font-size: 18px; /* Increase font size */
16
+ }
17
+
18
+ #myBtn:hover {
19
+ background-color: #555; /* Add a dark-grey background on hover */
20
+ }
21
+ </style>
core/css/index.html ADDED
File without changes
core/css/main.page.css ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .dropbtn {
2
+ background-color: #3498DB;
3
+ color: white;
4
+ padding: 8px;
5
+ font-size: 14px;
6
+ border: none;
7
+ cursor: pointer;
8
+ width: auto;
9
+ margin-bottom: 0;
10
+ font-weight: 300;
11
+ }
12
+
13
+
14
+ /* Dropdown button on hover & focus */
15
+
16
+ .dropbtn:hover,
17
+ .dropbtn:focus {
18
+ background: linear-gradient(#00ffa8, #3498DB, #2300ff);
19
+ color: white;
20
+ }
21
+
22
+
23
+ /* The container <div> - needed to position the dropdown content */
24
+
25
+ .dropdown {
26
+ display: inline-block;
27
+ text-align: center;
28
+ }
29
+
30
+
31
+ /* Dropdown Content (Hidden by Default) */
32
+
33
+ .dropdown-content {
34
+ display: none;
35
+ position: absolute;
36
+ text-align: left;
37
+ background-color: black;
38
+ min-width: 120px;
39
+ box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
40
+ z-index: 1;
41
+ width: 5%;
42
+ }
43
+
44
+
45
+ /* Links inside the dropdown */
46
+
47
+ .dropdown-content a {
48
+ color: black;
49
+ padding: 8px 12px;
50
+ text-decoration: none;
51
+ display: block;
52
+ text-align: left;
53
+ background: white;
54
+ }
55
+
56
+
57
+ /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
58
+
59
+ .show {
60
+ display: block;
61
+ }
62
+
63
+ #center {
64
+ text-align: left;
65
+ }
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+ .alert-box {
82
+ background-color: #fffbcc;
83
+ color: #777;
84
+ font-size: 14px;
85
+ line-height: 20px;
86
+ padding: 3px 7px;
87
+ text-align:centre;
88
+ font-family:Arial, Helvetica, sans-serif;
89
+ }
90
+ .alert-box .badge {
91
+ background-color: #f58f2a;
92
+ border-radius: 3px;
93
+ color: #fff;
94
+ margin-left: 4px;
95
+ margin-right: 4px;
96
+ padding: 3px 5px 3px 4px;
97
+ font-weight:bold;
98
+ text-transform: uppercase;
99
+ }
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+ table {
114
+ font-family: arial, sans-serif;
115
+ border-collapse: collapse;
116
+ width: 100%;
117
+ }
118
+
119
+ td, th {
120
+ border: 1px solid #dddddd;
121
+ text-align: left;
122
+ padding: 8px;
123
+ }
124
+
125
+ tr:nth-child(even) {
126
+ background-color: #dddddd;
127
+ }
core/css/nav.and.bottom.bar.css ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <meta name="viewport" content="width=device-width, initial-scale=1">
3
+ <style>
4
+ body {
5
+ margin: 0;
6
+ font-family: Arial, Helvetica, sans-serif;
7
+ }
8
+
9
+ .topnav {
10
+ overflow: hidden;
11
+ background-color: #333;
12
+ }
13
+
14
+ .topnav a {
15
+ float: left;
16
+ color: #f2f2f2;
17
+ text-align: center;
18
+ padding: 14px 16px;
19
+ text-decoration: none;
20
+ font-size: 17px;
21
+ }
22
+
23
+ .topnav a:hover {
24
+ background-color: #ddd;
25
+ color: black;
26
+ }
27
+
28
+ .topnav a.active {
29
+ background-color: #04AA6D;
30
+ color: white;
31
+ }
32
+ </style>
33
+ </head>
core/css/sidebar.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <meta name="viewport" content="width=device-width, initial-scale=1">
3
+ <style>
4
+ body {
5
+ font-family: "Lato", sans-serif;
6
+ }
7
+
8
+ .sidenav {
9
+ height: 100%;
10
+ width: 0;
11
+ position: fixed;
12
+ z-index: 1;
13
+ top: 0;
14
+ left: 0;
15
+ background-color: #111;
16
+ overflow-x: hidden;
17
+ transition: 0.5s;
18
+ padding-top: 60px;
19
+ }
20
+
21
+ .sidenav a {
22
+ padding: 8px 8px 8px 32px;
23
+ text-decoration: none;
24
+ font-size: 20px;
25
+ color: #818181;
26
+ display: block;
27
+ transition: 0.3s;
28
+ }
29
+
30
+ .sidenav a:hover {
31
+ color: #f1f1f1;
32
+ }
33
+
34
+ .sidenav .closebtn {
35
+ position: absolute;
36
+ top: 0;
37
+ right: 25px;
38
+ font-size: 10x;
39
+ margin-left: 50px;
40
+ }
41
+
42
+ @media screen and (max-height: 450px) {
43
+ .sidenav {padding-top: 15px;}
44
+ .sidenav a {font-size: 18px;}
45
+ }
46
+ </style>
47
+ </head>
core/games/GTA.China.Town.Wars.Install.Info.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite/2nd Gen)</h2>
4
+ <b>NOTE: Will Not Work On The Newest 4k Sticks (The More Rounded Sticks)</b><br>
5
+ Needed - 1.5Gb Of Space (Dont worry we will delete half of it at the end)</center><br><br>
6
+
7
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br>
8
+ INSTALL: <b>'ES File Explorer'</b><br>
9
+ INSTALL From Inside The 'Games/GTA.Collection Folder': <b>'GTA Chinatown.Wars APK'</b> - (Install The APK But Do Not Start The Game Yet)<br>
10
+ DOWNLOAD From Inside The 'Games/GTA.Collection Folder': <b>'GTA Chinatown.Wars Stories OBB ZIP'</b> (Download & Do Not Install) Click 'Done'<br>
11
+ Now Exit Downloader<br><br>
12
+
13
+ 2, On Your <b>Firestick</b> Start <b>'ES File Explorer'</b> & On The Side Menu Click <b>'LOCAL'</b> Now Click <b>'DOWNLOAD'</b> Now Click The <b>'Downloader' Folder</b><br>
14
+ NOTE: Its A Free App Click The X Top Right Of Your Screen When It Ask If You Want Premium (Only when starting for the first time)<br><br>
15
+
16
+ 3, Click & Hold On <b>'com.rockstargames.gtactw.zip'</b> (LONG PRESS IT) Until A Tick Appears<br><br>
17
+
18
+ 4, At The Bottom Right Of Your TV Screen Is The Word <b>'MORE'</b> CLICK IT<br><br>
19
+
20
+ 5, On The Menu Look For <b>'EXTRACT TO'</b> & CLICK IT, Select <b>'CURRENT PATH'</b> & Click <b>OK</b> & Wait<br><br>
21
+
22
+ 6, Now Long Click The Newly Extracted Folder <b>'com.rockstar.gtactw'</b> (The One Without A Zip) Until <b>A Tick Appears</b><br>
23
+ And Again At The Bottom Click <b>'MORE'</b><br><br>
24
+
25
+ 7, This Time On The Menu We Are Looking For <b>'MOVE TO'</b> CLICK IT<br><br>
26
+
27
+ 8, Choose <b>'Android'</b> & Then <b>'Obb'</b> & Click OK<br><br>
28
+
29
+ <b>Exit</b> 'ES Explorer' & Restart <b>'Downloader'</b> Go To The Files Tab & Delete All Files You See (This Will Free Up Lots Of Space)<br><br>
30
+
31
+ Start The Game On Your Firestick & Enjoy<br><br>
32
+
33
+ Tips: You can connect PS4, PS5 & XBOX Remotes or Others to your FIRESTICK<br>
34
+ (Go To Firestick Settings > Remotes & BlueTooth Devices > Game Controllers)<br><br>
35
+
36
+ Install Via A PC & FTP <a href="https://forum.tfms.xyz/index.php?/articles.html/articles/how-to-install-gta-games-on-your-firestick-using-a-pc-r9/" target="_blank">SEE HERE</a><br>Uses Only Half The Space On Your Stick This Way
core/games/GTA.III.Install.Info.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite/2nd Gen)</h2>
4
+ <b>NOTE: Will Not Work On The Newest 4k Sticks (The More Rounded Sticks)</b><br>
5
+ Needed - 1.5Gb Of Space (Dont worry we will delete half of it at the end)</center><br><br>
6
+
7
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br>
8
+ INSTALL: <b>'ES File Explorer'</b><br>
9
+ INSTALL From Inside The 'Games/GTA.Collection Folder': <b>'GTA III APK'</b> - (Install The APK But Do Not Start The Game Yet)<br>
10
+ DOWNLOAD From Inside The 'Games/GTA.Collection Folder': <b>'GTA III OBB ZIP'</b> (Download & Do Not Install) Click 'Done'<br>
11
+ Now Exit Downloader<br><br>
12
+
13
+ 2, On Your <b>Firestick</b> Start <b>'ES File Explorer'</b> & On The Side Menu Click <b>'LOCAL'</b> Now Click <b>'DOWNLOAD'</b> Now Click The <b>'Downloader' Folder</b><br>
14
+ NOTE: Its A Free App Click The X Top Right Of Your Screen When It Ask If You Want Premium (Only when starting for the first time)<br><br>
15
+
16
+ 3, Click & Hold On <b>'com.rockstar.gta3.zip'</b> (LONG PRESS IT) Until A Tick Appears<br><br>
17
+
18
+ 4, At The Bottom Right Of Your TV Screen Is The Word <b>'MORE'</b> CLICK IT<br><br>
19
+
20
+ 5, On The Menu Look For <b>'EXTRACT TO'</b> & CLICK IT, Select <b>'CURRENT PATH'</b> & Click <b>OK</b> & Wait<br><br>
21
+
22
+ 6, Now Long Click The Newly Extracted Folder <b>'com.rockstar.gta3'</b> (The One Without A Zip) Until <b>A Tick Appears</b><br>
23
+ And Again At The Bottom Click <b>'MORE'</b><br><br>
24
+
25
+ 7, This Time On The Menu We Are Looking For <b>'MOVE TO'</b> CLICK IT<br><br>
26
+
27
+ 8, Choose <b>'Android'</b> & Then <b>'Obb'</b> & Click OK<br><br>
28
+
29
+ <b>Exit</b> 'ES Explorer' & Restart <b>'Downloader'</b> Go To The Files Tab & Delete All Files You See (This Will Free Up Lots Of Space)<br><br>
30
+
31
+ Start The Game On Your Firestick & Enjoy<br><br>
32
+
33
+ Tips: You can connect PS4, PS5 & XBOX Remotes or Others to your FIRESTICK<br>
34
+ (Go To Firestick Settings > Remotes & BlueTooth Devices > Game Controllers)<br><br>
35
+
36
+ Install Via A PC & FTP <a href="https://forum.tfms.xyz/index.php?/articles.html/articles/how-to-install-gta-games-on-your-firestick-using-a-pc-r9/" target="_blank">SEE HERE</a><br>Uses Only Half The Space On Your Stick This Way
core/games/GTA.San.Andreas.Install.Info.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite/2nd Gen)</h2>
4
+ <b>NOTE: Will Not Work On The Newest 4k Sticks (The More Rounded Sticks)</b><br>
5
+ Needed - 3.5Gb Of Space (Dont worry we will delete half of it at the end)</center><br><br>
6
+
7
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br>
8
+ INSTALL: <b>'ES File Explorer'</b><br>
9
+ INSTALL From Inside The 'Games/GTA.Collection Folder': <b>'GTA San Andreas APK'</b> - (Install The APK But Do Not Start The Game Yet)<br>
10
+ DOWNLOAD From Inside The 'Games/GTA.Collection Folder': <b>'GTA San Andreas OBB ZIP'</b> (Download & Do Not Install) Click 'Done'<br>
11
+ Now Exit Downloader<br><br>
12
+
13
+ 2, On Your <b>Firestick</b> Start <b>'ES File Explorer'</b> & On The Side Menu Click <b>'LOCAL'</b> Now Click <b>'DOWNLOAD'</b> Now Click The <b>'Downloader' Folder</b><br>
14
+ NOTE: Its A Free App Click The X Top Right Of Your Screen When It Ask If You Want Premium (Only when starting for the first time)<br><br>
15
+
16
+ 3, Click & Hold On <b>'com.rockstargames.gtasa.zip'</b> (LONG PRESS IT) Until A Tick Appears<br><br>
17
+
18
+ 4, At The Bottom Right Of Your TV Screen Is The Word <b>'MORE'</b> CLICK IT<br><br>
19
+
20
+ 5, On The Menu Look For <b>'EXTRACT TO'</b> & CLICK IT, Select <b>'CURRENT PATH'</b> & Click <b>OK</b> & Wait<br><br>
21
+
22
+ 6, Now Long Click The Newly Extracted Folder <b>com.rockstargames.gtasa</b> (The One Without A Zip) Until <b>A Tick Appears</b><br>
23
+ And Again At The Bottom Click <b>'MORE'</b><br><br>
24
+
25
+ 7, This Time On The Menu We Are Looking For <b>'MOVE TO'</b> CLICK IT<br><br>
26
+
27
+ 8, Choose <b>'Android'</b> & Then <b>'Obb'</b> & Click OK<br><br>
28
+
29
+ <b>Exit</b> 'ES Explorer' & Restart <b>'Downloader'</b> Go To The Files Tab & Delete All Files You See (This Will Free Up Lots Of Space)<br><br>
30
+
31
+ Start The Game On Your Firestick & Enjoy<br><br>
32
+
33
+ Tips: You can connect PS4, PS5 & XBOX Remotes or Others to your FIRESTICK<br>
34
+ (Go To Firestick Settings > Remotes & BlueTooth Devices > Game Controllers)<br><br>
35
+
36
+ Install Via A PC & FTP <a href="https://forum.tfms.xyz/index.php?/articles.html/articles/how-to-install-gta-games-on-your-firestick-using-a-pc-r9/" target="_blank">SEE HERE</a><br>Uses Only Half The Space On Your Stick This Way
core/games/GTA.San.Libery.City.Stories.Install.Info.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite/2nd Gen)</h2>
4
+ <b>NOTE: Will Not Work On The Newest 4k Sticks (The More Rounded Sticks)</b><br>
5
+ Needed - 2.5Gb Of Space (Dont worry we will delete half of it at the end)</center><br><br>
6
+
7
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br>
8
+ INSTALL: <b>'ES File Explorer'</b><br>
9
+ INSTALL From Inside The 'Games/GTA.Collection Folder': <b>'GTA Liberty City Stories APK'</b> - (Install The APK But Do Not Start The Game Yet)<br>
10
+ DOWNLOAD From Inside The 'Games/GTA.Collection Folder': <b>'GTA Liberty City Stories OBB ZIP'</b> (Download & Do Not Install) Click 'Done'<br>
11
+ Now Exit Downloader<br><br>
12
+
13
+ 2, On Your <b>Firestick</b> Start <b>'ES File Explorer'</b> & On The Side Menu Click <b>'LOCAL'</b> Now Click <b>'DOWNLOAD'</b> Now Click The <b>'Downloader' Folder</b><br>
14
+ NOTE: Its A Free App Click The X Top Right Of Your Screen When It Ask If You Want Premium (Only when starting for the first time)<br><br>
15
+
16
+ 3, Click & Hold On <b>'com.rockstargames.gtalcs.zip'</b> (LONG PRESS IT) Until A Tick Appears<br><br>
17
+
18
+ 4, At The Bottom Right Of Your TV Screen Is The Word <b>'MORE'</b> CLICK IT<br><br>
19
+
20
+ 5, On The Menu Look For <b>'EXTRACT TO'</b> & CLICK IT, Select <b>'CURRENT PATH'</b> & Click <b>OK</b> & Wait<br><br>
21
+
22
+ 6, Now Long Click The Newly Extracted Folder <b>'com.rockstargames.gtalcs'</b> (The One Without A Zip) Until <b>A Tick Appears</b><br>
23
+ And Again At The Bottom Click <b>'MORE'</b><br><br>
24
+
25
+ 7, This Time On The Menu We Are Looking For <b>'MOVE TO'</b> CLICK IT<br><br>
26
+
27
+ 8, Choose <b>'Android'</b> & Then <b>'Obb'</b> & Click OK<br><br>
28
+
29
+ <b>Exit</b> 'ES Explorer' & Restart <b>'Downloader'</b> Go To The Files Tab & Delete All Files You See (This Will Free Up Lots Of Space)<br><br>
30
+
31
+ Start The Game On Your Firestick & Enjoy<br><br>
32
+
33
+ Tips: You can connect PS4, PS5 & XBOX Remotes or Others to your FIRESTICK<br>
34
+ (Go To Firestick Settings > Remotes & BlueTooth Devices > Game Controllers)<br><br>
35
+
36
+ Install Via A PC & FTP <a href="https://forum.tfms.xyz/index.php?/articles.html/articles/how-to-install-gta-games-on-your-firestick-using-a-pc-r9/" target="_blank">SEE HERE</a><br>Uses Only Half The Space On Your Stick This Way
core/games/GTA.Vice.City.Install.Info.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite/2nd Gen)</h2>
4
+ <b>NOTE: Will Not Work On The Newest 4k Sticks (The More Rounded Sticks)</b><br>
5
+ Needed - 2.5Gb Of Space (Dont worry we will delete half of it at the end)</center><br><br>
6
+
7
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br>
8
+ INSTALL: <b>'ES File Explorer'</b> DO NOT START IT YET<br>
9
+ INSTALL From Inside The 'Games/GTA.Collection Folder': <b>'GTA Vice City APK'</b> - (Install The APK But Do Not Start The Game Yet)<br>
10
+ DOWNLOAD From Inside The 'Games/GTA.Collection Folder': <b>'GTA Vice City OBB ZIP'</b> (Download & Do Not Install) Click 'Done'<br>
11
+ Now Exit Downloader<br><br>
12
+
13
+ 2, On Your <b>Firestick</b> Start <b>'ES File Explorer'</b> & On The Side Menu Click <b>'LOCAL'</b> Now Click <b>'DOWNLOAD'</b> Now Click The <b>'Downloader' Folder</b><br>
14
+ NOTE: Its A Free App Click The X Top Right Of Your Screen When It Ask If You Want Premium (Only when starting for the first time)<br><br>
15
+
16
+ 3, Click & Hold On <b>'com.rockstargames.gtavc.zip'</b> (LONG PRESS IT) Until A Tick Appears<br><br>
17
+
18
+ 4, At The Bottom Right Of Your TV Screen Is The Word <b>'MORE'</b> CLICK IT<br><br>
19
+
20
+ 5, On The Menu Look For <b>'EXTRACT TO'</b> & CLICK IT, Select <b>'CURRENT PATH'</b> & Click <b>OK</b> & Wait<br><br>
21
+
22
+ 6, Now Long Click The Newly Extracted Folder <b>com.rockstargames.gtavc</b> (The One Without A Zip) Until <b>A Tick Appears</b><br>
23
+ And Again At The Bottom Click <b>'MORE'</b><br><br>
24
+
25
+ 7, This Time On The Menu We Are Looking For <b>'MOVE TO'</b> CLICK IT<br><br>
26
+
27
+ 8, Choose <b>'Android'</b> & Then <b>'Obb'</b> & Click OK<br><br>
28
+
29
+ <b>Exit</b> 'ES Explorer' & Restart <b>'Downloader'</b> Go To The Files Tab & Delete All Files You See (This Will Free Up Lots Of Space)<br><br>
30
+
31
+ Start The Game On Your Firestick & Enjoy<br><br>
32
+
33
+ Tips: You can connect PS4, PS5 & XBOX Remotes or Others to your FIRESTICK<br>
34
+ (Go To Firestick Settings > Remotes & BlueTooth Devices > Game Controllers)<br><br>
35
+
36
+ Install Via A PC & FTP <a href="https://forum.tfms.xyz/index.php?/articles.html/articles/how-to-install-gta-games-on-your-firestick-using-a-pc-r9/" target="_blank">SEE HERE</a><br>Uses Only Half The Space On Your Stick This Way
core/games/xbox.html ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <center><h2>Works With Firestick (4k/HD/Lite)</h2><br>
4
+
5
+ 1, Start <b>Downloader</b> & Enter This Code In The Address Bar <b>7594741</b> Wait for the countdown<br><br>
6
+
7
+ 2, Install Xbox APK, Start It & Play<br><br>
8
+
9
+ No Cnosole Required But A Premium Subscription To XboX Is Needed<br><br>
10
+
11
+ App Can Also Be Found In The Firestick App Store (Depending On The Age Of Your Stick)<br><br>
12
+
core/iframes/index.html ADDED
File without changes
core/iframes/nflix.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ body {
3
+ margin: 0; /* Reset default margin */
4
+ }
5
+ iframe {
6
+ display: block; /* iframes are inline by default */
7
+ background: #000;
8
+ border: none; /* Reset default border */
9
+ height: 100vh; /* Viewport-relative units */
10
+ width: 100vw;
11
+ }
12
+ </style>
13
+ <iframe frameborder="0" scrolling="yes" width="100%" height="100%" src="https://imovix-mocha.vercel.app/" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>
core/iframes/onlyfools.s01.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <script disable-devtool-auto src="https://cdn.jsdelivr.net/npm/disable-devtool@latest"></script>
4
+ <center><iframe src="https://archive.org/embed/only-fools-series-1&amp;playlist=1&amp;list_height=150" width="640" height="650" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen></iframe>
5
+ <br><br>
6
+ <button type="button"><a href="https://archive.org/details/only-fools-series-2-4"><b>Seasons 2-4 Click Here</b></a></button>
7
+ <button type="button"><a href="https://archive.org/details/only-fools-series-5-uncut"><b>Season 5 Click Here</b></a></button>
8
+ <button type="button"><a href="https://archive.org/details/only-fools-series-6-uncut"><b>Season 6 Click Here</b></a></button>
9
+ <button type="button"><a href="https://archive.org/details/only-fools-series-7"><b>Season 7 Click Here</b></a></button><br><br>
10
+ <button type="button"><a href="/firestick/core/iframes/onlyfools.special1.html"><b>Specials 1 Click Here</b></a></button>
11
+ <button type="button"><a href="https://archive.org/details/only-fools-specials-1"><b>Specials 2 Click Here</b></a></button>
12
+ <button type="button"><a href="https://archive.org/details/only-fools-specials-2"><b>Specials 3 Click Here</b></a></button>
13
+ </center><br><br>
core/iframes/onlyfools.special1.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ <body style="background-color:powderblue;">
2
+ <title>Crystal-Hosts</title>
3
+ <script disable-devtool-auto src="https://cdn.jsdelivr.net/npm/disable-devtool@latest"></script>
4
+ <center><iframe src="https://archive.org/embed/only-fools-2001&amp;playlist=1&amp;list_height=150" width="640" height="650" frameborder="0" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen></iframe></center>
core/images/Astro_Prem.png ADDED
core/images/adguard.png ADDED
core/images/beinlogo.png ADDED
core/images/coming.soon.png ADDED

Git LFS Details

  • SHA256: a9e69ae0f9ae6badffb2a26e0b1835a9729bdd8081145137ee2e3cde961d9247
  • Pointer size: 131 Bytes
  • Size of remote file: 110 kB
core/images/cricketlogo.png ADDED
core/images/downloader.jpg ADDED

Git LFS Details

  • SHA256: 5a7a104eac9971842c0d9cabada2c5dcb324dd02d68d51cf616ad010909a9750
  • Pointer size: 131 Bytes
  • Size of remote file: 116 kB
core/images/downloader1.webp ADDED
core/images/emby.logo.png ADDED
core/images/factuallogo.png ADDED

Git LFS Details

  • SHA256: dd17620a4180fe5166eb10c8e96fb1bd8d673dbc66f948812a30ac01bacd2eb7
  • Pointer size: 131 Bytes
  • Size of remote file: 237 kB
core/images/fanush.png ADDED
core/images/footy.replay.jpg ADDED
core/images/forum.png ADDED

Git LFS Details

  • SHA256: a4ca66f77fd55664a49dcf922b8e032208202e7d42b60fd525799d25c819742c
  • Pointer size: 131 Bytes
  • Size of remote file: 713 kB
core/images/front.end.app.icon.png ADDED

Git LFS Details

  • SHA256: d18c42038f08d93d0409624edce56fe1715bb33f44bf7af6806491a6db234421
  • Pointer size: 131 Bytes
  • Size of remote file: 165 kB
core/images/gameslogo.png ADDED

Git LFS Details

  • SHA256: 96cb7717828960717823ae492ff3410ef84e8dc19d8245b882703d0194dca4ad
  • Pointer size: 132 Bytes
  • Size of remote file: 1.05 MB
core/images/happykids.png ADDED

Git LFS Details

  • SHA256: e704fd2096458c1855ff80a2fc5ed9c7e294ea496fd03bfeb202a468d3a43232
  • Pointer size: 131 Bytes
  • Size of remote file: 280 kB
core/images/hub.png ADDED
core/images/inappimage.png ADDED

Git LFS Details

  • SHA256: 8540669f4bb123bd2d7bedba16a724cd0105574d3862fcea35374cda3687129a
  • Pointer size: 131 Bytes
  • Size of remote file: 158 kB
core/images/index.html ADDED
File without changes
core/images/indexgames.png ADDED
core/images/jellyfinlogo.png ADDED
core/images/kooltv.jpg ADDED
core/images/livesportlogo.png ADDED
core/images/livetvlogo.png ADDED
core/images/movieindex.png ADDED

Git LFS Details

  • SHA256: 077ca0668a2c5532ffeb913f7634b2b1413d9b6762ff75215106f9b422ee68ac
  • Pointer size: 131 Bytes
  • Size of remote file: 105 kB
core/images/mx.png ADDED
core/images/now.png ADDED
core/images/nzsky.jpg ADDED
core/images/plex.png ADDED
core/images/premleaguelogo.png ADDED
core/images/proton.svg ADDED
core/images/skycinema.jpg ADDED
core/images/skysportsicon.jpeg ADDED