-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
984 lines (882 loc) · 28.1 KB
/
index.html
File metadata and controls
984 lines (882 loc) · 28.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Personal Tampermonkey Scripts - Browser Enhancement Collection</title>
<meta name="title" content="Personal Tampermonkey Scripts - Browser Enhancement Collection">
<meta name="description" content="A curated collection of Tampermonkey userscripts for enhancing your browsing experience. Deal sorting, currency conversion, Reddit enhancements, and more.">
<meta name="keywords" content="Tampermonkey, UserScripts, Browser Extensions, JavaScript, Web Enhancement, Deal Sorting, Price Conversion, Reddit, OpenLayers, Kleinanzeigen">
<meta name="author" content="1110101@oczc.de">
<meta name="robots" content="index, follow">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://github.com/1110101/tampermonkey_personal_scripts">
<meta property="og:title" content="Personal Tampermonkey Scripts - Browser Enhancement Collection">
<meta property="og:description" content="A curated collection of Tampermonkey userscripts for enhancing your browsing experience.">
<meta property="og:site_name" content="Personal Tampermonkey Scripts">
<!-- Canonical URL -->
<link rel="canonical" href="https://github.com/1110101/tampermonkey_personal_scripts">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#1b6e44">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<style>
:root {
--green-dark: #1b6e44;
--green-mid: #3fa037;
--green-light: #e8f5e2;
--border: #e0e0e0;
--text: #1a1a1a;
--text-muted: #6b6b6b;
--bg-subtle: #f7f8f9;
--radius: 4px;
--radius-card: 6px;
}
*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: "72", "72full", Arial, Helvetica, sans-serif;
color: var(--text);
overflow-x: hidden;
}
/* ── Nav ─────────────────────────────────────────────── */
.site-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
height: 52px;
display: flex;
align-items: center;
padding: 0 2rem;
background: transparent;
transition: background 0.25s, border-bottom 0.25s, backdrop-filter 0.25s;
}
.site-nav.scrolled {
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border);
}
.site-nav.scrolled .nav-title {
color: var(--text);
}
.site-nav.scrolled .nav-github {
color: var(--green-dark);
border-color: var(--green-dark);
}
.site-nav.scrolled .nav-github:hover {
background: var(--green-dark);
color: #fff;
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
}
.nav-mark {
width: 28px;
height: 28px;
background: var(--green-dark);
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.nav-mark i {
color: #fff;
font-size: 0.9rem;
}
.nav-title {
font-size: 0.95rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.95);
letter-spacing: 0.01em;
}
.nav-spacer { flex: 1; }
.nav-github {
display: inline-flex;
align-items: center;
gap: 0.4rem;
font-size: 0.85rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: var(--radius);
padding: 0.3rem 0.8rem;
text-decoration: none;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-github:hover {
background: rgba(255, 255, 255, 0.15);
color: #fff;
border-color: rgba(255, 255, 255, 0.8);
}
/* ── Hero ────────────────────────────────────────────── */
#vanta-bg {
position: fixed;
inset: 0;
z-index: -1;
pointer-events: none;
}
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 7rem 1.5rem 5rem;
}
.hero-inner {
text-align: center;
max-width: 720px;
margin: 0 auto;
}
.hero-eyebrow {
display: inline-block;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.65);
margin-bottom: 1.25rem;
}
.hero-title {
font-size: clamp(2.2rem, 5vw, 3.4rem);
font-weight: 700;
color: #fff;
line-height: 1.15;
margin-bottom: 1.25rem;
letter-spacing: -0.02em;
}
.hero-title span {
color: #6fdc8c;
}
.hero-subtitle {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.75);
line-height: 1.65;
margin-bottom: 2.5rem;
max-width: 560px;
margin-left: auto;
margin-right: auto;
}
.hero-actions {
display: flex;
gap: 0.75rem;
justify-content: center;
flex-wrap: wrap;
}
.hero-ai-notice {
margin-top: 2rem;
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.5);
letter-spacing: 0.03em;
}
/* ── Buttons ─────────────────────────────────────────── */
.btn-green {
background: var(--green-mid);
color: #fff;
border: 1px solid var(--green-mid);
border-radius: var(--radius);
padding: 0.6rem 1.5rem;
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: background 0.2s, border-color 0.2s;
}
.btn-green:hover {
background: var(--green-dark);
border-color: var(--green-dark);
color: #fff;
}
.btn-ghost-white {
background: transparent;
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.55);
border-radius: var(--radius);
padding: 0.6rem 1.5rem;
font-size: 0.95rem;
font-weight: 500;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.85);
color: #fff;
}
.btn-white-solid {
background: #fff;
color: var(--green-dark);
border: 1px solid #fff;
border-radius: var(--radius);
padding: 0.6rem 1.5rem;
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: background 0.2s, color 0.2s;
}
.btn-white-solid:hover {
background: #e8f5e2;
color: var(--green-dark);
}
/* ── Content sections ────────────────────────────────── */
.content-section {
background: #fff;
padding: 5rem 0;
}
.content-section.alt {
background: var(--bg-subtle);
}
.section-label {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--green-dark);
margin-bottom: 0.6rem;
}
.section-heading {
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 700;
color: var(--text);
margin-bottom: 0.75rem;
letter-spacing: -0.01em;
}
.section-subtext {
font-size: 1rem;
color: var(--text-muted);
max-width: 520px;
}
/* ── Feature cards ───────────────────────────────────── */
.feature-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-card);
padding: 1.75rem;
height: 100%;
transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.feature-icon {
width: 44px;
height: 44px;
background: var(--green-dark);
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.1rem;
}
.feature-icon i {
font-size: 1.2rem;
color: #fff;
}
.feature-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--text);
}
.feature-text {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.65;
margin: 0;
}
/* ── Script cards ────────────────────────────────────── */
.script-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-card);
padding: 1.5rem;
height: 100%;
display: flex;
flex-direction: column;
transition: box-shadow 0.2s, transform 0.2s;
}
.script-card:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.script-card-body {
flex: 1;
}
.script-card-footer {
padding-top: 1rem;
margin-top: 1rem;
border-top: 1px solid var(--border);
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
align-items: center;
}
.script-title {
font-size: 0.975rem;
font-weight: 700;
color: var(--green-dark);
margin-bottom: 0.4rem;
display: flex;
align-items: center;
gap: 0.4rem;
}
.script-description {
font-size: 0.875rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 0.75rem;
}
.script-features {
list-style: none;
padding: 0;
margin: 0;
}
.script-features li {
font-size: 0.85rem;
color: #444;
padding: 0.2rem 0;
padding-left: 1rem;
position: relative;
}
.script-features li::before {
content: "";
position: absolute;
left: 0;
top: 0.6em;
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--green-mid);
}
.site-badge {
font-size: 0.75rem;
color: var(--green-dark);
background: var(--green-light);
border: 1px solid rgba(27, 110, 68, 0.2);
border-radius: 3px;
padding: 0.2rem 0.55rem;
font-weight: 500;
}
.install-link {
font-size: 0.78rem;
font-weight: 600;
color: var(--green-dark);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.3rem;
margin-left: auto;
}
.install-link:hover {
text-decoration: underline;
color: var(--green-dark);
}
/* ── How-to steps ────────────────────────────────────── */
.step-block {
display: flex;
gap: 1.25rem;
}
.step-num {
flex-shrink: 0;
width: 36px;
height: 36px;
background: var(--green-dark);
color: #fff;
border-radius: 50%;
font-size: 0.9rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.15rem;
}
.step-body h3 {
font-size: 1rem;
font-weight: 700;
color: var(--text);
margin-bottom: 0.6rem;
}
.step-body p,
.step-body ul,
.step-body li {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.65;
}
.step-body ul {
padding-left: 1.1rem;
margin-bottom: 0.5rem;
}
.step-body a {
color: var(--green-dark);
font-weight: 500;
text-decoration: none;
}
.step-body a:hover {
text-decoration: underline;
}
.code-block {
background: #f0f4f2;
border: 1px solid #d0e4d8;
border-left: 3px solid var(--green-dark);
border-radius: var(--radius);
padding: 0.9rem 1rem;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
font-size: 0.82rem;
color: #1a1a1a;
line-height: 1.75;
margin: 0.5rem 0 1rem;
}
.step-body code {
background: #eef2ef;
color: var(--green-dark);
padding: 0.15em 0.4em;
border-radius: 3px;
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
font-size: 0.85em;
}
/* ── CTA band ────────────────────────────────────────── */
.cta-band {
background: var(--green-dark);
padding: 4rem 0;
text-align: center;
}
.cta-band h2 {
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
color: #fff;
margin-bottom: 0.6rem;
letter-spacing: -0.01em;
}
.cta-band p {
font-size: 1rem;
color: rgba(255, 255, 255, 0.75);
margin-bottom: 2rem;
}
.cta-band .btn-ghost-white {
border-color: rgba(255, 255, 255, 0.45);
}
/* ── Footer ──────────────────────────────────────────── */
.site-footer {
background: #fff;
border-top: 1px solid var(--border);
padding: 1.5rem 0;
font-size: 0.82rem;
color: var(--text-muted);
text-align: center;
}
.site-footer a {
color: var(--green-dark);
text-decoration: none;
}
.site-footer a:hover {
text-decoration: underline;
}
/* ── Divider ─────────────────────────────────────────── */
.section-divider {
height: 1px;
background: var(--border);
margin: 0;
}
</style>
</head>
<body>
<div id="vanta-bg"></div>
<!-- Navigation -->
<nav class="site-nav" id="site-nav">
<a href="#" class="nav-brand">
<span class="nav-mark"><i class="bi bi-code-slash"></i></span>
<span class="nav-title">Personal Scripts</span>
</a>
<span class="nav-spacer"></span>
<a href="https://github.com/1110101/tampermonkey_personal_scripts" class="nav-github" target="_blank">
<i class="bi bi-github"></i> GitHub
</a>
</nav>
<!-- Hero -->
<section class="hero-section">
<div class="hero-inner">
<span class="hero-eyebrow">Browser Enhancements</span>
<h1 class="hero-title">Personal<br><span>UserScripts</span></h1>
<p class="hero-subtitle">
A curated collection of Tampermonkey scripts for daily web browsing.
Sort deals, convert currencies, enhance Reddit, manage listings, and more.
</p>
<div class="hero-actions">
<a href="#how-to-install" class="btn-green">
<i class="bi bi-download"></i> Get Started
</a>
<a href="#scripts" class="btn-ghost-white">
<i class="bi bi-list-ul"></i> View Scripts
</a>
</div>
<p class="hero-ai-notice">✨ Scripts and page developed with AI assistance (Claude)</p>
</div>
</section>
<!-- What is Tampermonkey -->
<section class="content-section" id="what-is-tampermonkey">
<div class="container">
<div class="row mb-5">
<div class="col-lg-6">
<p class="section-label">Overview</p>
<h2 class="section-heading">What is Tampermonkey?</h2>
<p class="section-subtext">
Enhance any website with custom scripts, no server changes required.
</p>
</div>
</div>
<div class="row g-4">
<div class="col-md-4">
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-plugin"></i></div>
<h3 class="feature-title">Browser Extension</h3>
<p class="feature-text">
A free extension for Chrome, Firefox, Safari, Edge, and Opera that lets you
run custom JavaScript on any website.
</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-sliders"></i></div>
<h3 class="feature-title">Customize Websites</h3>
<p class="feature-text">
Modify behavior, add features, automate tasks, and improve UI without
touching the original website.
</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<div class="feature-icon"><i class="bi bi-shield-check"></i></div>
<h3 class="feature-title">Safe & Controlled</h3>
<p class="feature-text">
Scripts run in a sandboxed environment with explicit permissions. Enable
or disable any script at any time.
</p>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- How to Install -->
<section class="content-section alt" id="how-to-install">
<div class="container">
<div class="row mb-5">
<div class="col-lg-6">
<p class="section-label">Setup</p>
<h2 class="section-heading">How to Install & Use</h2>
<p class="section-subtext">Get up and running in a few minutes.</p>
</div>
</div>
<div class="row g-5">
<div class="col-lg-6">
<div class="step-block">
<div class="step-num">1</div>
<div class="step-body">
<h3>Install Tampermonkey</h3>
<ul>
<li><strong>Chrome:</strong> <a href="https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo" target="_blank">Chrome Web Store</a></li>
<li><strong>Firefox:</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/tampermonkey/" target="_blank">Firefox Add-ons</a></li>
<li><strong>Edge:</strong> <a href="https://microsoftedge.microsoft.com/addons/detail/tampermonkey/iikmkjmpaadaobahmlepeloendndfphd" target="_blank">Edge Add-ons</a></li>
<li><strong>Safari:</strong> <a href="https://apps.apple.com/app/tampermonkey/id1482490089" target="_blank">Mac App Store</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="step-block">
<div class="step-num">2</div>
<div class="step-body">
<h3>Install a UserScript</h3>
<p>Click any "Install" link on this page, or navigate to the raw file on GitHub. Tampermonkey detects <code>.user.js</code> files automatically.</p>
<div class="code-block">
1. Click "Install" on a script card below<br>
2. Tampermonkey opens and detects the script<br>
3. Click "Install" to confirm
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="step-block">
<div class="step-num">3</div>
<div class="step-body">
<h3>Enable & Configure</h3>
<ul>
<li>Scripts are <strong>enabled by default</strong> on matching sites</li>
<li>Click the Tampermonkey icon to see active scripts on the current page</li>
<li>Toggle scripts on/off individually</li>
<li>Edit scripts anytime via Dashboard</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="step-block">
<div class="step-num">4</div>
<div class="step-body">
<h3>Auto-Updates</h3>
<p>
All scripts include <code>@updateURL</code> and <code>@downloadURL</code> metadata
and update automatically.
</p>
<ul>
<li>Tampermonkey checks periodically in the background</li>
<li>Updates require confirmation before installing</li>
<li>No manual reinstallation needed</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- Available Scripts -->
<section class="content-section" id="scripts">
<div class="container">
<div class="row mb-5">
<div class="col-lg-6">
<p class="section-label">Scripts</p>
<h2 class="section-heading">Available UserScripts</h2>
<p class="section-subtext">Browser enhancements for daily web use.</p>
</div>
</div>
<div class="row g-4">
<!-- CorporateBenefits Toolkit -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-sort-down"></i> CorporateBenefits Toolkit
</div>
<p class="script-description">
Sort and filter employee benefit offers by discount percentage. Fixes shop buttons to open directly without redirect overlays.
</p>
<ul class="script-features">
<li>Dynamic filter ranges based on actual discount distribution</li>
<li>3-state sort toggle (highest/lowest/off)</li>
<li>Shop buttons open directly in new tab</li>
<li>Works on both overview and offer pages</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">*.mitarbeiterangebote.de</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/CorporateBenefits%20Toolkit.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- MitarbeiterVorteile Toolkit -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-gift"></i> MitarbeiterVorteile Toolkit
</div>
<p class="script-description">
Sort and filter employee benefits portal offers by discount. Parses various discount formats including cashback and promotional text.
</p>
<ul class="script-features">
<li>Intelligent discount format parsing (%, cashback, text)</li>
<li>Automatic sorting from highest to lowest</li>
<li>Dynamic filter categories</li>
<li>Clean control panel interface</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">*.mitarbeitervorteile.de</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/MitarbeiterVorteile%20Toolkit.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- Kleinanzeigen Toolkit -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-collection"></i> Kleinanzeigen Toolkit
</div>
<p class="script-description">
Template and image manager for Kleinanzeigen.de. Save text templates and entire image groups for quick reuse.
</p>
<ul class="script-features">
<li>Text template manager with save/load/rename/delete</li>
<li>Image library with group organization</li>
<li>"Save all images" batch function</li>
<li>IndexedDB storage for images</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">kleinanzeigen.de</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/Kleinanzeigen%20Toolkit.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- MyDealz Ignore Toolkit -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-eye-slash"></i> MyDealz Ignore Toolkit
</div>
<p class="script-description">
Ignore deals by keyword or manually. Track read deals with visual markers and hide them optionally.
</p>
<ul class="script-features">
<li>Keyword filtering with exact/partial match</li>
<li>Visual green markers for read articles</li>
<li>Manual ignore button on each deal</li>
<li>Toggle to hide/show seen articles</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">mydealz.de</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/MyDealz%20Ignore%20Toolkit.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- Reddit Highlight New Comments -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-chat-left-text"></i> Reddit Highlight New Comments
</div>
<p class="script-description">
Highlights new comments since your last visit with quick time navigation buttons and adjustable highlight periods.
</p>
<ul class="script-features">
<li>Automatic visit tracking with 7-day history</li>
<li>Quick time buttons (5min, 30min, 1h, post age fractions)</li>
<li>+/- buttons to adjust time (10min or 1h with Shift)</li>
<li>Color gradient based on comment age</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">reddit.com</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/Reddit%20highlight%20new%20comments.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- Zloty to Euro Converter -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-currency-exchange"></i> Zloty to Euro Converter
</div>
<p class="script-description">
Automatically converts Polish Zloty (PLN) to Euro on any webpage using real-time exchange rates with caching.
</p>
<ul class="script-features">
<li>Real-time PLN to EUR conversion</li>
<li>4-hour rate caching to reduce API calls</li>
<li>Handles dynamic content via MutationObserver</li>
<li>Works on any website with PLN prices</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">Any website</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/Z%C5%82oty%20to%20Euro%20Converter.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
<!-- Leaflet-OpenLayers-Zoomout -->
<div class="col-lg-6">
<div class="script-card">
<div class="script-card-body">
<div class="script-title">
<i class="bi bi-zoom-out"></i> Leaflet/OpenLayers Zoomout
</div>
<p class="script-description">
Double right-click to zoom out on Leaflet or OpenLayers maps.
</p>
<ul class="script-features">
<li>Double right-click zoom out gesture</li>
<li>Works with both Leaflet and OpenLayers</li>
<li>Auto-detects map instances on the page</li>
<li>Prevents context menu interference</li>
</ul>
</div>
<div class="script-card-footer">
<span class="site-badge">Any map website</span>
<a class="install-link" href="https://github.com/1110101/tampermonkey_personal_scripts/raw/refs/heads/main/Leafleft-OpenLayers-Zoomout.user.js" target="_blank"><i class="bi bi-download"></i> Install</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Band -->
<section class="cta-band">
<div class="container">
<h2>Ready to Enhance Your Browser?</h2>
<p>Install Tampermonkey and start using these scripts today.</p>
<div class="d-flex gap-3 justify-content-center flex-wrap">
<a href="#how-to-install" class="btn-white-solid">
<i class="bi bi-book"></i> Installation Guide
</a>
<a href="https://github.com/1110101/tampermonkey_personal_scripts" class="btn-ghost-white" target="_blank">
<i class="bi bi-github"></i> View on GitHub
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<p class="mb-0">
Personal UserScripts | <a href="mailto:1110101@oczc.de">1110101@oczc.de</a>
</p>
</div>
</footer>
<!-- Three.js (required for Vanta.js) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<!-- Vanta.js WAVES Effect -->
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
<script>
VANTA.WAVES({
el: '#vanta-bg',
mouseControls: false,
touchControls: false,
gyroControls: false,
minHeight: 200,
minWidth: 200,
scale: 1,
scaleMobile: 1,
color: 0x0a3d2b,
shininess: 20,
waveHeight: 12,
waveSpeed: 0.6,
zoom: 0.8
});
const nav = document.getElementById('site-nav');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 60);
}, { passive: true });
</script>
</body>
</html>