-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.json
More file actions
3654 lines (3654 loc) · 191 KB
/
scripts.json
File metadata and controls
3654 lines (3654 loc) · 191 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
[
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/8798-remover-f%C3%BCr-volle-krankenh%C3%A4user/&postID=138228#post138228"
],
"url": "http://bw-katschutz.de/kh/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/8794-verbands-meldungsblocker/&postID=137852#post137852"
],
"url": "http://bw-katschutz.de/mb/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/24425-script-besseres-notizen-men%C3%BC-betternotesmenu/&postID=485884#post485884"
],
"url": "http://h3008771.stratoserver.net/scripts/BetterNotesMenu-v1.1.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/24425-script-besseres-notizen-men%C3%BC-betternotesmenu/&postID=485871#post485871"
],
"url": "http://h3008771.stratoserver.net/scripts/BetterNotesMenu.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/8798-remover-f%C3%BCr-volle-krankenh%C3%A4user/&postID=138153#post138153",
"https://forum.leitstellenspiel.de/index.php?thread/8798-remover-f%C3%BCr-volle-krankenh%C3%A4user/&postID=138228#post138228"
],
"url": "http://lss-scripts.de/kh/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/2140-allgemeines-script-version-dev-alpha-version-jetzt-auch-f%C3%BCr-opera-safari-und-int/&postID=19980#post19980",
"https://forum.leitstellenspiel.de/index.php?thread/2140-allgemeines-script-version-dev-alpha-version-jetzt-auch-f%C3%BCr-opera-safari-und-int/&postID=20852#post20852"
],
"url": "http://lstspiel.easy-lst.de/allgemeines_script_lstspiel.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/2140-allgemeines-script-version-dev-alpha-version-jetzt-auch-f%C3%BCr-opera-safari-und-int/&postID=52920#post52920"
],
"url": "http://lstspiel.kilu.de/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=55022#post55022"
],
"url": "http://ni363857_2.vweb18.nitrado.net/UserScript/1_2_2.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=53264#post53264"
],
"url": "http://ni363857_2.vweb18.nitrado.net/UserScript/fahrzeugstatus.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/1865-scripting/&postID=16541#post16541"
],
"url": "http://sonstiges.easy-lst.de/fzg-uebersicht.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/24425-script-besseres-notizen-men%C3%BC-betternotesmenu/&postID=485871#post485871",
"https://forum.leitstellenspiel.de/index.php?thread/24425-script-besseres-notizen-men%C3%BC-betternotesmenu/&postID=486026#post486026"
],
"url": "https://afiliafrostfang.github.io/AfiliaSkripte/BetterNotesMenu.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/25286-script-neue-sortierfunktion-ausblenden/&postID=501117#post501117"
],
"url": "https://afiliafrostfang.github.io/AfiliaSkripte/Sortierfunktion%20ausblenden.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/8798-remover-f%C3%BCr-volle-krankenh%C3%A4user/&postID=138153#post138153"
],
"url": "https://bw-katschutz.de/kh/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/8794-verbands-meldungsblocker/&postID=137841#post137841"
],
"url": "https://bw-katschutz.de/mb/script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/10054-chat-popupbenachrichtigung/&postID=160512#post160512"
],
"url": "https://dl.dropboxusercontent.com/u/49293607/Meine_scripte/Scriptdatenbank/SL/Leitstellenspiel/Chat.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=440601#post440601",
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=475491#post475491",
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=475503#post475503"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/BuildNotice.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/22753-script-s-bewerbungshelfer-und-geb%C3%A4udeliste-im-profil/&postID=452851#post452851",
"https://forum.leitstellenspiel.de/index.php?thread/22753-script-s-bewerbungshelfer-und-geb%C3%A4udeliste-im-profil/&postID=452922#post452922"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/bewerbungshelfer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/22753-script-s-bewerbungshelfer-und-geb%C3%A4udeliste-im-profil/&postID=452851#post452851",
"https://forum.leitstellenspiel.de/index.php?thread/22753-script-s-bewerbungshelfer-und-geb%C3%A4udeliste-im-profil/&postID=452922#post452922"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/buildingsAsTabProfile.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/22795-umgesetzt-scriptwunsch-mehrere-fahrzeuge-l%C3%B6schen/&postID=453494#post453494"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/destroyVehicles.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/22519-erf%C3%BCllt-personal-k%C3%BCndigen/&postID=453490#post453490"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/firePersonal.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19111-script-einsatzcredits-v3-0/&postID=470184#post470184"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/missionListCredits.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21448-script-radio-in-navbar/&postID=427426#post427426"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/navbarRadio.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21817-script-%C3%BCberarbeitung-der-navbar-in-der-personalzuweisung-fahrzeuge/&postID=435462#post435462"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/optimizePersonalzuweisung.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18923-script-personalhelfer/&postID=438007#post438007",
"https://forum.leitstellenspiel.de/index.php?thread/23194-erledigt-scriptwunsch/&postID=462274#post462274"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/personalhelfer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21474-vorschlag-bearbeiten-button-in-br-ganz-oben-anordnen/&postID=428059#post428059",
"https://forum.leitstellenspiel.de/index.php?thread/21474-vorschlag-bearbeiten-button-in-br-ganz-oben-anordnen/&postID=428061#post428061"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/settings_bsr_on_top.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19176-lss-manager-v-4/&postID=467193#post467193",
"https://forum.leitstellenspiel.de/index.php?thread/24132-automatischer-gefangenentransport-funktioniert-nicht/&postID=487891#post487891",
"https://forum.leitstellenspiel.de/index.php?thread/25186-skriptsuche-skriptwunsch-erf%C3%BCllt-khs-und-zellen-im-verband-freigeben/&postID=499610#post499610",
"https://forum.leitstellenspiel.de/index.php?thread/25186-skriptsuche-skriptwunsch-erf%C3%BCllt-khs-und-zellen-im-verband-freigeben/&postID=499612#post499612",
"https://forum.leitstellenspiel.de/index.php?thread/25186-skriptwunsch-erf%C3%BCllt-khs-und-zellen-im-verband-freigeben/&postID=499610#post499610",
"https://forum.leitstellenspiel.de/index.php?thread/25186-skriptwunsch-erf%C3%BCllt-khs-und-zellen-im-verband-freigeben/&postID=499612#post499612",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=500417#post500417"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/shareBuildings.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=469788#post469788",
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=469789#post469789",
"https://forum.leitstellenspiel.de/index.php?thread/23542-skriptwunsch-anzeige-bundesland-der-wache/&postID=470017#post470017"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/showCounty.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/22817-script-alle-geb%C3%A4udeausbauten-auf-einmal-de-aktivieren/&postID=453882#post453882",
"https://forum.leitstellenspiel.de/index.php?thread/23158-umgesetzt-spezialisierte-wachen/&postID=466481#post466481",
"https://forum.leitstellenspiel.de/index.php?thread/23423-skriptanfrage-kauf-von-erweiterungen-vereinfachen/&postID=466243#post466243",
"https://forum.leitstellenspiel.de/index.php?thread/24690-suche-script/&postID=490726#post490726",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=490436#post490436",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=490725#post490725"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/toggleExtensions.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=471087#post471087",
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=471088#post471088",
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=471093#post471093",
"https://forum.leitstellenspiel.de/index.php?thread/19233-standardeinstellungen-f%C3%BCr-elw-seg-personal-werben-usw/&postID=459095#post459095",
"https://forum.leitstellenspiel.de/index.php?thread/24132-automatischer-gefangenentransport-funktioniert-nicht/&postID=487891#post487891"
],
"url": "https://drtraxx.de/scrpts/leitstellenspiel/vehicleChanges.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20135-script-openmissionsnewtab/&postID=390542#post390542"
],
"url": "https://gist.github.com/kdev/90ffcc83c2ca3b3d620200d2e59f2907/raw/acced478b058da3aac235967d383521a05cb07de/OpenMissionsNewTab.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20909-script-schneller-wechsel-der-versionen/&postID=412687#post412687",
"https://forum.leitstellenspiel.de/index.php?thread/20909-script-schneller-wechsel-der-versionen/&postID=412867#post412867"
],
"url": "https://gist.githubusercontent.com/KokosnussDEV/0a5ae4fd2ea66a0dc085d098ec4e9e2f/raw/28d772cf8e23377560821ac1cd8250633426b72c/%255BLSS%255D%2520Schneller%2520Seitenwechsel.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20835-script-sale-do-not-show/&postID=412695#post412695"
],
"url": "https://gist.githubusercontent.com/KokosnussDEV/b7139db06e63efa901c012bbe6817f78/raw/79b079c3994b91dfefc0f805995cf03a1baef893/Sale-DoNotShow.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20135-script-openmissionsnewtab/&postID=431542#post431542"
],
"url": "https://gist.githubusercontent.com/kdev/90ffcc83c2ca3b3d620200d2e59f2907/raw/acced478b058da3aac235967d383521a05cb07de/OpenMissionsNewTab.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27227-script-einsatzwagen-ansicht/&postID=532166#post532166"
],
"url": "https://github.com/Baldy183/Einsatzwagen-Ansicht/raw/refs/heads/main/Einsatzwagen%20Ansicht-1.0.0.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/26942-verband-statistik-anzeige/&postID=525693#post525693"
],
"url": "https://github.com/CaLaVeRaXGER/Leitstellenspiel-Verband-Statistik/raw/main/Leitstellenspiel%20Verband%20Statistik%20Close%20BETA-1.03CloseBETA.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/29095-fehler-fahrzeuge-auf-anfahrt-weiteralamierung-zum-selben-einsatz/&postID=571725#post571725"
],
"url": "https://github.com/Caddy21/BOS-Ernie-Scripte/raw/main/Einsatzkategorie.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/23382-script-lehrgangszuweiser/&postID=572089#post572089"
],
"url": "https://github.com/Caddy21/BOS-Ernie-Scripte/raw/main/Lehrgangszuweiser.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27856-script-erweiterungs-manager/&postID=546140#post546140",
"https://forum.leitstellenspiel.de/index.php?thread/27856-script-erweiterungs-manager/&postID=565054#post565054"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2002%20-%20Erweiterungs-Manager.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27576-script-alle-leitstellen-umschalten/&postID=539873#post539873",
"https://forum.leitstellenspiel.de/index.php?thread/28703-sonnenblumen-sammeln-2025/&postID=564000#post564000"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2003%20-%20Alle%20LST%20umschalten.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27616-script-s6-fahrzeugauflister/&postID=541167#post541167",
"https://forum.leitstellenspiel.de/index.php?thread/27616-script-s6-fahrzeugauflister/&postID=544736#post544736"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2004%20-%20Fahrzeuge%20im%20S6%20auflisten.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27594-script-seenotrettungseins%C3%A4tze-filtern/&postID=540432#post540432"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2005%20-%20SNR-Eins%C3%A4tze%20filtern.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28136-scriptwunsch-fahrzeuge-einfacher-verschrotten/&postID=552228#post552228"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2006%20-%20Fahrzeuge%20l%C3%B6schen.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27602-srechw%C3%BCnsche-sortieren/&postID=541498#post541498",
"https://forum.leitstellenspiel.de/index.php?thread/27602-srechw%C3%BCnsche-sortieren/&postID=546625#post546625"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2007%20-%20Sprechwunsch%20Sortierer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27639-script-einsatzkategorienfilter/&postID=542340#post542340"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2009%20-%20Einsatzkategorienfilter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27671-script-auszeichnungssortierer/&postID=542423#post542423"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2010%20-%20Auszeichnungsverwalter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27700-skript-wunsch-aao-kategorien-einfach-aktivieren-deaktivieren/&postID=543200#post543200",
"https://forum.leitstellenspiel.de/index.php?thread/27700-skript-wunsch-aao-kategorien-einfach-aktivieren-deaktivieren/&postID=543237#post543237"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2011%20-%20AAO%20Kategorien%20Ein%20und%20Ausblenden.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27711-ungenutzte-stellpl%C3%A4tze-anzeigen/&postID=543481#post543481"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2012%20-%20Stellplatz%20finder.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27711-ungenutzte-stellpl%C3%A4tze-anzeigen/&postID=543477#post543477"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2012%20-%20Stellplatzfinder.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27741-script-alarmstichworte/&postID=543741#post543741",
"https://forum.leitstellenspiel.de/index.php?thread/27741-script-alarmstichworte/&postID=563467#post563467"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2013%20-%20Alarmstichworte.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27768-script-aufger%C3%A4umtes-profil-men%C3%BC/&postID=544402#post544402"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2014%20-%20Aufger%C3%A4umtes%20Profil-Men%C3%BC.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28400-script-multiausblender/&postID=557648#post557648"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2015%20-%20Multiausblender.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/26702-zielortfilter/&postID=546135#post546135"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2016%20-%20Zielortfilter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27160-m%C3%B6gliche-eins%C3%A4tze-noch-nicht-freigeschaltet-bereits-freigeschaltet/&postID=546622#post546622",
"https://forum.leitstellenspiel.de/index.php?thread/27160-m%C3%B6gliche-eins%C3%A4tze-noch-nicht-freigeschaltet-bereits-freigeschaltet/&postID=546641#post546641",
"https://forum.leitstellenspiel.de/index.php?thread/27160-m%C3%B6gliche-eins%C3%A4tze-noch-nicht-freigeschaltet-bereits-freigeschaltet/&postID=546691#post546691",
"https://forum.leitstellenspiel.de/index.php?thread/27895-skriptwunsch-m%C3%B6gliche-eins%C3%A4tze-versch%C3%B6nern/&postID=546697#post546697",
"https://forum.leitstellenspiel.de/index.php?thread/27895-skriptwunsch-m%C3%B6gliche-eins%C3%A4tze-versch%C3%B6nern/&postID=546854#post546854"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2017%20-%20Eins%C3%A4tze%20anzeigen.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28134-scriptwunsch-wachen-einsatzbereit-nicht-einsatzbereit/&postID=552329#post552329"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2019%20-%20Wachen%20reaktivieren.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28134-scriptwunsch-wachen-einsatzbereit-nicht-einsatzbereit/&postID=552329#post552329"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2020%20-%20Wachenstatus.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28131-scriptwunsch-einsatzr%C3%BCckmeldung-in-einsatzliste/&postID=553840#post553840"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2022%20-%20Nachrichtenanzeiger.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28008-skriptwunsch-%C3%BCber-die-leitstelle-eine-bzw-mehrere-fahrzeug-ids-auf-status-6-setz/&postID=554316#post554316"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2023%20-%20FMS%20Manager.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28769-skriptwunsch-personalanzeige-min-und-ist/&postID=564184#post564184"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2027%20-%20Personal-Soll-Checker.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28692-skriptwunsch-eins%C3%A4tze-einklappen-ohne-lsm-v4/&postID=562821#post562821",
"https://forum.leitstellenspiel.de/index.php?thread/28692-skriptwunsch-eins%C3%A4tze-einklappen-ohne-lsm-v4/&postID=563323#post563323"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2030%20-%20EIns%C3%A4tze%20ein-%20und%20ausklappen.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28428-scriptwunsch-ausr%C3%BCckeverz%C3%B6gerung-f%C3%BCr-gesamte-wache/&postID=558229#post558229"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2032%20-%20Ausr%C3%BCckeverz%C3%B6gerer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27854-hilfe-zu-diesen-einsatz-button-im-gsl-erstellen-fenster/&postID=559502#post559502"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2033%20-%20VGSL%20Einsatzanforderung.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28593-script-einsatzgruppierer/&postID=560772#post560772"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2034%20-%20Einsatzgruppierer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28705-umgesetzt-durchnummerieren-den-eins%C3%A4tze-in-der-einsatzliste/&postID=565277#post565277"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2036%20-%20Einsatznummerierung.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27616-script-s6-fahrzeugauflister/&postID=541167#post541167"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%204%20-%20Fahrzeuge%20im%20S6%20auflisten.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/29148-script-coinz%C3%A4hler/&postID=570475#post570475"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2045%20-%20Coinz%C3%A4hler.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/29281-richtiger-verdienst-anzeigen-bei-event-eins%C3%A4tze-einsatzliste/&postID=572593#post572593"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2049%20-%20Credis%20Tracker.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/29449-script-kleinwachen-ausblender/&postID=575915#post575915"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%2056%20-%20Kleinwachen%20ausblender.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27602-srechw%C3%BCnsche-sortieren/&postID=541498#post541498"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%207%20-%20Sprechwunsch%20Sortierer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27639-script-einsatzkategorienfilter/&postID=541806#post541806",
"https://forum.leitstellenspiel.de/index.php?thread/27639-script-einsatzkategorienfilter/&postID=542340#post542340"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%209%20-%20Einsatzkategorienfilter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27576-script-alle-leitstellen-umschalten/&postID=539873#post539873"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%20Alle%20LST%20umschalten.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/27594-script-seenotrettungseins%C3%A4tze-filtern/&postID=540432#post540432"
],
"url": "https://github.com/Caddy21/LSS-Scripte/raw/main/%5BLSS%5D%20SNR-Eins%C3%A4tze%20filtern.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/28622-script-fahrzeugauflistung-ohne-personalzuweisung/&postID=562427#post562427"
],
"url": "https://github.com/Caddy21/NAME/blob/main/SCRIPTNAME.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=204406#post204406",
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=207866#post207866",
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=209974#post209974",
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=210368#post210368",
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=210428#post210428"
],
"url": "https://github.com/ChaosKai/fahrzeugtableau/raw/beta/tableau.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/5251-fahrzeugtableau-version-2-0/&postID=161229#post161229"
],
"url": "https://github.com/ChaosKai/fahrzeugtableau/raw/master/tableau.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/10081-tastaturalarmierung-fahrzeugselektierung-per-tastatur/&postID=160921#post160921",
"https://forum.leitstellenspiel.de/index.php?thread/10081-tastaturalarmierung-fahrzeugselektierung-per-tastatur/&postID=168847#post168847",
"https://forum.leitstellenspiel.de/index.php?thread/10081-tastaturalarmierung-fahrzeugselektierung-per-tastatur/&postID=168865#post168865"
],
"url": "https://github.com/ChaosKai/tastaturalarmierung/raw/master/tastaturalarmierung.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=478957#post478957",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=480854#post480854"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_bigger_AAO_buttons.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/16931-%C3%BCbersicht-%C3%BCber-die-scripte/&postID=509657#post509657",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=459475#post459475"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_delete_all_vehicle_graphics.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/25781-erledigt-dgl-obwohl-erweiterung-vorhanden-ist-kann-nicht-gekauft-werden/&postID=510703#post510703",
"https://forum.leitstellenspiel.de/index.php?thread/26377-suche-nach-stellpl%C3%A4tzen-f%C3%BCr-limitierte-fhz/&postID=513143#post513143",
"https://forum.leitstellenspiel.de/index.php?thread/28299-fehler-dgl-erweiterung-spinnt/&postID=555636#post555636",
"https://forum.leitstellenspiel.de/index.php?thread/28299-kein-fehler-dgl-erweiterung-spinnt/&postID=555636#post555636",
"https://forum.leitstellenspiel.de/index.php?thread/28299-kein-fehler-dgl-erweiterung-spinnt/&postID=555645#post555645"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_find_DGL_duplicates.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/25653-skriptwunsch-rtw-alarmierung-nach-reihenfolge-und-l%C3%A4ngster-standzeit/&postID=508375#post508375"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_hide_hospital.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19107-eins%C3%A4tze-einsatz-im-gebiet/&postID=435431#post435431",
"https://forum.leitstellenspiel.de/index.php?thread/20241-scriptwunsch-anzeige-im-einsatzfenster-in-welchem-einsatzgebiet-man-sich-gerade/&postID=394464#post394464",
"https://forum.leitstellenspiel.de/index.php?thread/20241-scriptwunsch-anzeige-im-einsatzfenster-in-welchem-einsatzgebiet-man-sich-gerade/&postID=394465#post394465",
"https://forum.leitstellenspiel.de/index.php?thread/25419-gibt-es-ein-script-der-in-der-leitstelle-liste-den-landkreis-stadt-anzeigt/&postID=503548#post503548"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_mission_in_area_check.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14401-frage-und-hilfebereich-f%C3%BCr-entwickler/&postID=469883#post469883"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/main/LSS_new_building_lock_ILS%26type.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19148-gr%C3%B6%C3%9Fere-aao-buttons/&postID=363980#post363980",
"https://forum.leitstellenspiel.de/index.php?thread/19148-gr%C3%B6%C3%9Fere-aao-buttons/&postID=363982#post363982",
"https://forum.leitstellenspiel.de/index.php?thread/19148-gr%C3%B6%C3%9Fere-aao-buttons/&postID=363986#post363986",
"https://forum.leitstellenspiel.de/index.php?thread/19148-gr%C3%B6%C3%9Fere-aao-buttons/&postID=498668#post498668"
],
"url": "https://github.com/Cr4zyc4k3/LSS/blob/master/LSS_bigger_AAO_buttons.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21171-forum-seitenleiste-oben/&postID=420983#post420983"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/Forum_page_bar_above.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/23602-scriptwunsch-einsatztitel-beim-%C3%B6ffnen-des-einsatzes-in-die-zwischenablage-kopier/&postID=470072#post470072",
"https://forum.leitstellenspiel.de/index.php?thread/23602-scriptwunsch-einsatztitel-beim-%C3%B6ffnen-des-einsatzes-in-die-zwischenablage-kopier/&postID=470104#post470104",
"https://forum.leitstellenspiel.de/index.php?thread/23602-scriptwunsch-einsatztitel-beim-%C3%B6ffnen-des-einsatzes-in-die-zwischenablage-kopier/&postID=567115#post567115",
"https://forum.leitstellenspiel.de/index.php?thread/28024-skriptwunsch-erledigt-button-im-alarmfenster-bitte-thema-schliessen/&postID=549624#post549624"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_Copy_mission_name_to_clipboard.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19940-leitstellenansicht-m%C3%B6glichkeit-zur-einstellung-der-spaltenanzahl/&postID=414545#post414545"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_LSA_hide_overflow.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19013-chat-permanent-whisper/&postID=360457#post360457"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_Permanent_Whisper.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20525-scriptwunsch-alle-eigenen-fahrzeuge-rd-zur%C3%BCck-alarmieren-nach-oben-setzten/&postID=403602#post403602",
"https://forum.leitstellenspiel.de/index.php?thread/20525-scriptwunsch-alle-eigenen-fahrzeuge-rd-zur%C3%BCck-alarmieren-nach-oben-setzten/&postID=403613#post403613",
"https://forum.leitstellenspiel.de/index.php?thread/20525-scriptwunsch-alle-eigenen-fahrzeuge-rd-zur%C3%BCck-alarmieren-nach-oben-setzten/&postID=403781#post403781"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_backalarm_above.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13873-scriptwunsch-hotkeys-ohne-tasten-kombi/&postID=475083#post475083",
"https://forum.leitstellenspiel.de/index.php?thread/13873-scriptwunsch-hotkeys-ohne-tasten-kombi/&postID=475090#post475090"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_backalarm_standalone.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=480960#post480960"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_bigger_AAO_buttons.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/25219-script-wachnotizen/&postID=499918#post499918",
"https://forum.leitstellenspiel.de/index.php?thread/25219-script-wachnotizen/&postID=552795#post552795",
"https://forum.leitstellenspiel.de/index.php?thread/28384-wachnotizen/&postID=557387#post557387"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_building_notes.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/23447-skriptwunsch-funk-meldungen-anpassen/&postID=467088#post467088"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_change_FMS_text.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20565-script-passende-fahrzeuge-auf-der-jeweiligen-wache-in-der-lehrgangsauswahl-anzei/&postID=405046#post405046",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=422278#post422278"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_course_show_vehicle.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20730-script-custom-sounds/&postID=408533#post408533"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_custom_sounds.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21727-scriptwunsch-geb%C3%A4udegrafik-l%C3%B6schen/&postID=443346#post443346",
"https://forum.leitstellenspiel.de/index.php?thread/21727-scriptwunsch-geb%C3%A4udegrafik-l%C3%B6schen/&postID=443352#post443352",
"https://forum.leitstellenspiel.de/index.php?thread/21727-scriptwunsch-geb%C3%A4udegrafik-l%C3%B6schen/&postID=443365#post443365",
"https://forum.leitstellenspiel.de/index.php?thread/21727-scriptwunsch-geb%C3%A4udegrafik-l%C3%B6schen/&postID=443383#post443383",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=444230#post444230",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=459475#post459475"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_delete_all_vehicle_graphics.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19407-aao-mehrere-aaos-l%C3%B6schen-delete-multiple-aaos/&postID=369861#post369861"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_delete_multiple_aaos.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/24275-scriptwunsch-fahrzeitberechnung-mit-marker-auf-karte/&postID=484401#post484401"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_distance_to_marker.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19433-lssm-v4-sprechwunsch-mit-klick-auf-zum-einsatz-bearbeiten/&postID=370647#post370647"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_expansion_close_radio_call.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19229-skriptwunsch-umzugshefler/&postID=389857#post389857"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_export_helper.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/24826-script-doppelte-fustw-dgl-suchen-und-auflisten/&postID=492834#post492834",
"https://forum.leitstellenspiel.de/index.php?thread/24826-script-doppelte-fustw-dgl-suchen-und-auflisten/&postID=492878#post492878"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_find_DGL_duplicates.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20028-scriptwunsch-rtws-automatisch-kh-anfahren/&postID=410728#post410728",
"https://forum.leitstellenspiel.de/index.php?thread/20028-scriptwunsch-rtws-automatisch-kh-anfahren/&postID=410741#post410741"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_hide_hospital.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20734-script-w%C3%BCnsch/&postID=408765#post408765",
"https://forum.leitstellenspiel.de/index.php?thread/20734-script-w%C3%BCnsch/&postID=408768#post408768"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_hide_missions.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21955-information-%C3%BCber-zu-enge-wachen/&postID=437854#post437854",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=435310#post435310",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=435312#post435312",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=437853#post437853"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_hide_warning_too_much_buildings.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19519-umgesetzt-im-lssm-v-4-fixieren-von-der-leitstelle-und-geb%C3%A4udetype-im-baumodus/&postID=374512#post374512"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_new_building_lock_ILS%26type.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19177-script-sortierung-der-startfahrzeuge/&postID=364614#post364614"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_new_building_vehicle_sort.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19438-sprechwunsch-zellen-in-tabelle-anzeigen/&postID=370728#post370728",
"https://forum.leitstellenspiel.de/index.php?thread/19438-sprechwunsch-zellen-in-tabelle-anzeigen/&postID=390702#post390702"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_radio_call_police_table.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=441788#post441788"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_show_move_personal.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=441788#post441788"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_show_move_personal_right.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20054-bereitstellungsraum-ton-vor-ablauf/&postID=388001#post388001"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/main/LSS_warn_BSR_run_off.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18970-scriptwunsch-w-merker/&postID=359915#post359915",
"https://forum.leitstellenspiel.de/index.php?thread/18970-scriptwunsch-w-merker/&postID=359937#post359937",
"https://forum.leitstellenspiel.de/index.php?thread/18970-scriptwunsch-w-merker/&postID=359941#post359941",
"https://forum.leitstellenspiel.de/index.php?thread/18970-scriptwunsch-w-merker/&postID=359943#post359943",
"https://forum.leitstellenspiel.de/index.php?thread/19013-chat-permanent-whisper/&postID=360466#post360466"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_Permanent_Whisper.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=369907#post369907",
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=369922#post369922"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_building_notes.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19319-funkspr%C3%BCche-anpassen-script/&postID=367685#post367685"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_change_FMS_text.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20028-scriptwunsch-rtws-automatisch-kh-anfahren/&postID=387264#post387264",
"https://forum.leitstellenspiel.de/index.php?thread/20028-scriptwunsch-rtws-automatisch-kh-anfahren/&postID=410720#post410720"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_hide_hospital.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19107-eins%C3%A4tze-einsatz-im-gebiet/&postID=362768#post362768",
"https://forum.leitstellenspiel.de/index.php?thread/19107-eins%C3%A4tze-einsatz-im-gebiet/&postID=363073#post363073"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_mission_in_area_check.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13874-infobereich-gefangenenentlassung-im-einsatzfenster-%C3%A4ndern-verschieben/&postID=367342#post367342"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_move_prisoner_dialog.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19519-umgesetzt-im-lssm-v-4-fixieren-von-der-leitstelle-und-geb%C3%A4udetype-im-baumodus/&postID=374512#post374512"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_new_building_lock_ILS%26type.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19438-sprechwunsch-zellen-in-tabelle-anzeigen/&postID=370748#post370748",
"https://forum.leitstellenspiel.de/index.php?thread/19438-sprechwunsch-zellen-in-tabelle-anzeigen/&postID=390678#post390678"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_radio_call_police_table.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=367135#post367135",
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=367173#post367173",
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=441782#post441782"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_show_move_personal.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=367173#post367173",
"https://forum.leitstellenspiel.de/index.php?thread/19294-skriptwunsch-personalanzeige-personal-verschieben/&postID=441782#post441782"
],
"url": "https://github.com/Cr4zyc4k3/LSS/raw/master/LSS_show_move_personal_right.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19227-script-missionvaluegraph/&postID=365666#post365666"
],
"url": "https://github.com/Cyclefly/MissionValueGraph/raw/main/MissionValueGraph.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19157-script-requiredvehiclemarker-aao-buttons-f%C3%BCr-fehlende-fahrzeuge-hervorheben/&postID=364183#post364183"
],
"url": "https://github.com/Cyclefly/RequiredVehicleMarker/raw/main/RequiredVehicleMarker.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/11308-notification-alarm/&postID=180748#post180748"
],
"url": "https://github.com/DLRG-Dominik/LSSNotifity-Alarm/raw/master/Notification_alarm.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=369883#post369883",
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=403806#post403806",
"https://forum.leitstellenspiel.de/index.php?thread/19405-scriptwunsch-wachennotizen/&postID=440553#post440553"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/BuildNotice.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18656-script-fuhrpark-manager/&postID=349832#post349832",
"https://forum.leitstellenspiel.de/index.php?thread/18656-script-fuhrpark-manager/&postID=382541#post382541",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=428055#post428055",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=428060#post428060"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/Fuhrpark-Manager.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19449-script-verbandgeb%C3%A4ude-%C3%BCbersicht/&postID=370974#post370974"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/allianceBuildingsOverview.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18595-script-button-f%C3%BCr-automatisches-werben-in-der-neue-leute-werben-%C3%BCbersicht/&postID=348621#post348621"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/auto-werben-button.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18666-scriptwunsch-dienstzeit-in-wache-anzeigen/&postID=358423#post358423",
"https://forum.leitstellenspiel.de/index.php?thread/18666-scriptwunsch-dienstzeit-in-wache-anzeigen/&postID=358429#post358429",
"https://forum.leitstellenspiel.de/index.php?thread/18666-scriptwunsch-dienstzeit-in-wache-anzeigen/&postID=358481#post358481"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/dienstzeiten.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14782-firstresponder/&postID=368768#post368768"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/firsresponder_uk.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14782-firstresponder/&postID=368005#post368005",
"https://forum.leitstellenspiel.de/index.php?thread/14782-firstresponder/&postID=369021#post369021",
"https://forum.leitstellenspiel.de/index.php?thread/14782-firstresponder/&postID=384653#post384653",
"https://forum.leitstellenspiel.de/index.php?thread/19944-script-firstresponder-mit-freundlicher-genehmigung-von-jumaho/&postID=384661#post384661"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/firstresponder.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18247-scriptwunsch-dauerhaft-sichtbare-notizen/&postID=394494#post394494",
"https://forum.leitstellenspiel.de/index.php?thread/18247-scriptwunsch-dauerhaft-sichtbare-notizen/&postID=394553#post394553"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/geileNotizen.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20788-scriptwunsch-nickname-im-chat-namen-einf%C3%A4rben/&postID=409836#post409836"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/label-red.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/19919-script-abwesenheitsnachricht/&postID=384117#post384117"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/n_a_message.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18923-script-personalhelfer/&postID=358306#post358306",
"https://forum.leitstellenspiel.de/index.php?thread/19203-vorschlag-soll-wert-0-entspricht-300-wenn-automatisch-werben-aktiv/&postID=365171#post365171",
"https://forum.leitstellenspiel.de/index.php?thread/19203-vorschlag-soll-wert-0-entspricht-300-wenn-automatisch-werben-aktiv/&postID=365173#post365173",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=404080#post404080",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=468947#post468947"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/personalhelfer.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=413912#post413912",
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=413923#post413923"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/shareBuildings.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20141-script-zeige-den-landkreis-oder-die-kreisfreie-stadt-eines-geb%C3%A4udes-an/&postID=390612#post390612",
"https://forum.leitstellenspiel.de/index.php?thread/20141-script-zeige-den-landkreis-oder-die-kreisfreie-stadt-eines-geb%C3%A4udes-an/&postID=390616#post390616"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/showCounty.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18610-script-tabellarische-anzeige-aller-fahrzeuge-im-status-6/&postID=348991#post348991"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/status6.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18656-script-fuhrpark-manager/&postID=349832#post349832",
"https://forum.leitstellenspiel.de/index.php?thread/18656-script-fuhrpark-manager/&postID=349971#post349971"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/vehicle-manager-uk.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=413627#post413627",
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=413894#post413894",
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=414997#post414997",
"https://forum.leitstellenspiel.de/index.php?thread/20941-fahrzeug-und-geb%C3%A4udeeinstellungen-exportieren/&postID=432091#post432091"
],
"url": "https://github.com/DrTraxx/Leitstellenspiel/raw/master/vehicleChanges.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15271-missionsort/&postID=254931#post254931",
"https://forum.leitstellenspiel.de/index.php?thread/15271-missionsort/&postID=299347#post299347"
],
"url": "https://github.com/FeuerwehrHannover/LSSMissionSort/raw/master/MissionSort.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/16937-chatmission-einsatzvorschau/&postID=298267#post298267"
],
"url": "https://github.com/FeuerwehrHannover/LSSscripte/raw/master/ChatMission/src/index.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/16621-missiontimechecker/&postID=288789#post288789"
],
"url": "https://github.com/FeuerwehrHannover/LSSscripte/raw/master/missionTimeChecker/src/custom.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15182-themenliste-f%C3%BCr-die-n%C3%A4chste-umfrage/&postID=255011#post255011",
"https://forum.leitstellenspiel.de/index.php?thread/15182-themenliste-f%C3%BCr-die-n%C3%A4chste-umfrage/&postID=255040#post255040"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/ProtocollLinkInsert.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15738-verbandgeb%C3%A4ude-ausblenden/&postID=282857#post282857"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/blob/master/BuildingIconHiding.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15063-dom-elemente-in-den-einsatzlisten-l%C3%B6schen-wenn-abgeschlossen/&postID=254521#post254521"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/blob/master/DeleteObsoleteMissionObjects.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/17561-scriptwunsch-nur-eigene-eins%C3%A4tze-auf-der-einsatzkarte/&postID=319281#post319281"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/blob/master/MissionIconHider.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14451-umgesetzt-verbands-protokoll/&postID=254885#post254885"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/blob/master/ProtocollLinkInsert.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=341412#post341412",
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=341421#post341421",
"https://forum.leitstellenspiel.de/index.php?thread/25105-script-standortanzeiger/&postID=497874#post497874"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/blob/master/Standortanzeiger.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18345-verstecke-dein-eigenes-geb%C3%A4ude-skript/&postID=340565#post340565",
"https://forum.leitstellenspiel.de/index.php?thread/18357-kartenicons-ein-ausblenden-per-klick-verbandsfreigabe-icon/&postID=340788#post340788"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/BuildingIconHider.user.js"
},
{
"posts": [