-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.json
3310 lines (3310 loc) · 172 KB
/
scripts.json
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/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"
],
"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"
],
"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"
],
"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": [
"https://forum.leitstellenspiel.de/index.php?thread/15063-dom-elemente-in-den-einsatzlisten-l%C3%B6schen-wenn-abgeschlossen/&postID=252280#post252280",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=279202#post279202",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=358257#post358257",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=358300#post358300"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/DeleteObsoleteMissionObjects.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15031-verbandeins%C3%A4tze-ausblenden/&postID=252278#post252278",
"https://forum.leitstellenspiel.de/index.php?thread/15031-verbandeins%C3%A4tze-ausblenden/&postID=252309#post252309",
"https://forum.leitstellenspiel.de/index.php?thread/18357-kartenicons-ein-ausblenden-per-klick-verbandsfreigabe-icon/&postID=340788#post340788",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=272979#post272979"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/MissionIconHider.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/11703-erinnerung-ablauf-des-premium-accounts/&postID=273277#post273277",
"https://forum.leitstellenspiel.de/index.php?thread/11703-erinnerung-ablauf-des-premium-accounts/&postID=468887#post468887",
"https://forum.leitstellenspiel.de/index.php?thread/11703-erledigt-erinnerung-ablauf-des-premium-accounts/&postID=468887#post468887"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/PremiumAccountReminder.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=342120#post342120",
"https://forum.leitstellenspiel.de/index.php?thread/17744-nachfrage-fms-%C3%BCbersicht/&postID=325179#post325179",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=257812#post257812",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=257833#post257833"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/ProtocollLinkInsert.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13610-sharealliancepost/&postID=327613#post327613"
],
"url": "https://github.com/Glaeydar/LSS_Scripts/raw/master/ShareAlliancePost.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21834-filter-nach-stern-oder-figur/&postID=435878#post435878"
],
"url": "https://github.com/HerrWaldgott/LSS-Scripte/blob/main/FilterMissionEvent.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/21736-scriptwunsch-gold-auszeichnungen-in-eigenem-reiter/&postID=435974#post435974",
"https://forum.leitstellenspiel.de/index.php?thread/21736-scriptwunsch-gold-auszeichnungen-in-eigenem-reiter/&postID=435976#post435976",
"https://forum.leitstellenspiel.de/index.php?thread/21736-scriptwunsch-gold-auszeichnungen-in-eigenem-reiter/&postID=435982#post435982",
"https://forum.leitstellenspiel.de/index.php?thread/21736-scriptwunsch-gold-auszeichnungen-in-eigenem-reiter/&postID=436005#post436005"
],
"url": "https://github.com/HerrWaldgott/LSS-Scripte/raw/main/GoldenAwardsInNewTab.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=386404#post386404"
],
"url": "https://github.com/JRH-1997/Scripts-MKS/raw/master/Script-bundle/Scripts-MKS.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/12739-verbandkrankenh%C3%A4user/&postID=205055#post205055",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=315015#post315015",
"https://forum.leitstellenspiel.de/index.php?thread/8946-oudatet-krankenhausfilter/&postID=184115#post184115"
],
"url": "https://github.com/Jenkins-LST/Krankenhausfilter/raw/master/Eigene.script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/12739-verbandkrankenh%C3%A4user/&postID=205055#post205055",
"https://forum.leitstellenspiel.de/index.php?thread/640-sammelthread-f%C3%BCr-einfache-fragen-und-antworten/&postID=315015#post315015",
"https://forum.leitstellenspiel.de/index.php?thread/8946-oudatet-krankenhausfilter/&postID=184115#post184115"
],
"url": "https://github.com/Jenkins-LST/Krankenhausfilter/raw/master/Verband.script.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13977-scriptwunsch-missionsfilter-mit-checkboxen/&postID=228427#post228427"
],
"url": "https://github.com/JuMaH0/lss/blob/master/MissionFilter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14832-script-anfrage-f%C3%BCr-wachen%C3%BCbersicht/&postID=245034#post245034"
],
"url": "https://github.com/JuMaH0/lss/raw/master/BuildingSelector.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14674-fme-stichwort-by-jumaho/&postID=241075#post241075",
"https://forum.leitstellenspiel.de/index.php?thread/14674-fme-stichwort-by-jumaho/&postID=241348#post241348"
],
"url": "https://github.com/JuMaH0/lss/raw/master/FMEStichwortIconsbyJuMaHo.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13221-skriptwunsch-einsatzfilter/&postID=221715#post221715"
],
"url": "https://github.com/JuMaH0/lss/raw/master/MissionFilter.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13754-missiontab/&postID=222940#post222940"
],
"url": "https://github.com/JuMaH0/lss/raw/master/MissionTab.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14956-aao-overlap/&postID=247314#post247314"
],
"url": "https://github.com/JuMaH0/lss/raw/master/aao_overlap.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14751-aao-config-lite/&postID=243052#post243052",
"https://forum.leitstellenspiel.de/index.php?thread/14751-aao-config-lite/&postID=243154#post243154"
],
"url": "https://github.com/JuMaH0/lss/raw/master/aaolite.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14782-firstresponder/&postID=243667#post243667"
],
"url": "https://github.com/JuMaH0/lss/raw/master/firstresponder.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13603-missionsh/&postID=387980#post387980",
"https://forum.leitstellenspiel.de/index.php?thread/13603-missionsh/&postID=388251#post388251"
],
"url": "https://github.com/JuMaH0/lss/raw/master/fullsizesh.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13603-missionsh/&postID=220109#post220109"
],
"url": "https://github.com/JuMaH0/lss/raw/master/missionsh.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13603-missionsh/&postID=243323#post243323"
],
"url": "https://github.com/JuMaH0/lss/raw/master/missionshX.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/13873-scriptwunsch-hotkeys-ohne-tasten-kombi/&postID=246948#post246948"
],
"url": "https://github.com/JuMaH0/lss/raw/master/onekey.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20359-patientshide/&postID=397638#post397638"
],
"url": "https://github.com/JuMaH0/lss/raw/master/patientshide.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/20087-more-detailed-mission-description/&postID=394322#post394322"
],
"url": "https://github.com/JuMaH0/lss/raw/master/projectx.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/12514-lss-creditserweiterung/&postID=202292#post202292",
"https://forum.leitstellenspiel.de/index.php?thread/12514-lss-creditserweiterung/&postID=202308#post202308"
],
"url": "https://github.com/KBOE2/LSS-Credits-Erweiterung/raw/master/LSS-Creditserweiterung.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/12514-lss-creditserweiterung/&postID=202308#post202308"
],
"url": "https://github.com/KBOE2/LSS-Credits-Erweiterung/raw/master/LSS-Creditserweiterung_gesamtcredits.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/14832-script-anfrage-f%C3%BCr-wachen%C3%BCbersicht/&postID=245048#post245048"
],
"url": "https://github.com/KBOE2/LSS-Scripts/blob/master/wachen_filter.min.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/16350-einsatzhelfer-auf-franz%C3%B6sisch-einsatzhelfer-en-fran%C3%A7ais/&postID=281860#post281860"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Einsatzhelfer.fr.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15126-ortsangabe-bei-fms-3-4-und-5/&postID=251601#post251601",
"https://forum.leitstellenspiel.de/index.php?thread/15126-ortsangabe-bei-fms-3-4-und-5/&postID=251642#post251642",
"https://forum.leitstellenspiel.de/index.php?thread/15126-ortsangabe-bei-fms-3-4-und-5/&postID=253456#post253456"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/FMS-Change.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/15575-lss-statuscount/&postID=263793#post263793"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/LSS-StatusCount.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=352563#post352563",
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=352571#post352571",
"https://forum.leitstellenspiel.de/index.php?thread/11166-lss-manager-v3/&postID=352902#post352902"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Leitstellenansicht-Nav-toggle.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18549-erledigt-symbol-beim-alamieren-von-rd/&postID=347223#post347223",
"https://forum.leitstellenspiel.de/index.php?thread/18549-erledigt-symbol-beim-alamieren-von-rd/&postID=347346#post347346"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Mission-Alarm-Icon.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18812-script-mission-alarm-speaker/&postID=355560#post355560"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Mission-Alarm-Speaker-UK.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18812-script-mission-alarm-speaker/&postID=388476#post388476"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Mission-Alarm-Speaker.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/16776-script-mission-alarm-time/&postID=292983#post292983"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Mission-Alarm-Time.user.js"
},
{
"posts": [
"https://forum.leitstellenspiel.de/index.php?thread/18082-am-einsatz-anwesende-fahrzeuge-scannen/&postID=336564#post336564",
"https://forum.leitstellenspiel.de/index.php?thread/18082-am-einsatz-anwesende-fahrzeuge-scannen/&postID=347229#post347229"
],
"url": "https://github.com/KBOE2/LSS-Scripts/raw/master/Mission-Less-ELW-Highlight.user.js"