mediawiki-projects-list 1.1.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -10,6 +10,8 @@ declare module 'mediawiki-projects-list' {
10
10
  articlePath: string;
11
11
  /** Script path of the project */
12
12
  scriptPath: string;
13
+ /** Only exists when the hostname contains a single wiki: Full script path to the wiki */
14
+ fullScriptPath?: string;
13
15
  /** Only exists when the hostname contains multiple wikis: How to handle the id string */
14
16
  idString?: {
15
17
  /** Separator to join or split the id string on */
@@ -24,9 +26,9 @@ declare module 'mediawiki-projects-list' {
24
26
  /** Whether the paths include matches of the regex */
25
27
  regexPaths: boolean;
26
28
  /** Wiki farm of the project */
27
- wikiFarm: ("wikimedia" | "fandom" | "miraheze" | "wiki.gg" | "biligame" | "huijiwiki" | "shoutwiki") | null;
29
+ wikiFarm: ("biligame" | "fandom" | "huijiwiki" | "miraheze" | "shoutwiki" | "wiki.gg" | "wikimedia") | null;
28
30
  /** List of extensions providing useful API endpoints */
29
- extensions: ("CentralAuth" | "Cargo")[];
31
+ extensions: ("Cargo" | "CentralAuth" | "OAuth")[];
30
32
  /** Replacement for spaces in the article URL */
31
33
  urlSpaceReplacement: string;
32
34
  /** Note about the specific project */
package/index.js CHANGED
@@ -7,14 +7,15 @@ const {properties: {wikiProjects: {items: {properties: wikiProjectSchema}}}} = r
7
7
  * @property {string} regex - Regex to match the project url
8
8
  * @property {string} articlePath - Article path of the project
9
9
  * @property {string} scriptPath - Script path of the project
10
+ * @property {string} [fullScriptPath] - Only exists when the hostname contains a single wiki: Full script path to the wiki
10
11
  * @property {object} [idString] - Only exists when the hostname contains multiple wikis: How to handle the id string
11
12
  * @property {string} idString.separator - Separator to join or split the id string on
12
13
  * @property {"asc"|"desc"} idString.direction - Order in which the project regex additional group matches should be chained to gain the id string
13
14
  * @property {string} idString.regex - Regex to match the id string
14
15
  * @property {string[]} idString.scriptPaths - How to turn the group matches of the id string regex into an URL to the script path, index based on group matches
15
16
  * @property {boolean} regexPaths - Whether the paths include matches of the regex
16
- * @property {?("wikimedia"|"fandom"|"miraheze"|"wiki.gg"|"biligame"|"huijiwiki"|"shoutwiki")} wikiFarm - Wiki farm of the project
17
- * @property {("CentralAuth"|"Cargo")[]} extensions - List of extensions providing useful API endpoints
17
+ * @property {?("biligame"|"fandom"|"huijiwiki"|"miraheze"|"shoutwiki"|"wiki.gg"|"wikimedia")} wikiFarm - Wiki farm of the project
18
+ * @property {("Cargo"|"CentralAuth"|"OAuth")[]} extensions - List of extensions providing useful API endpoints
18
19
  * @property {string} urlSpaceReplacement - Replacement for spaces in the article URL
19
20
  * @property {?string} note - Note about the specific project
20
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediawiki-projects-list",
3
- "version": "1.1.2",
3
+ "version": "1.2.0",
4
4
  "type": "commonjs",
5
5
  "description": "List of MediaWiki projects for use in discord-wiki-bot",
6
6
  "main": "index.js",
@@ -32,6 +32,10 @@
32
32
  "type": "string",
33
33
  "description": "Script path of the project"
34
34
  },
35
+ "fullScriptPath": {
36
+ "type": "string",
37
+ "description": "Only exists when the hostname contains a single wiki: Full script path to the wiki"
38
+ },
35
39
  "idString": {
36
40
  "type": "object",
37
41
  "description": "Only exists when the hostname contains multiple wikis: How to handle the id string",
@@ -80,13 +84,13 @@
80
84
  "type": "string",
81
85
  "description": "Wiki farm of the project",
82
86
  "enum": [
83
- "wikimedia",
87
+ "biligame",
84
88
  "fandom",
89
+ "huijiwiki",
85
90
  "miraheze",
91
+ "shoutwiki",
86
92
  "wiki.gg",
87
- "biligame",
88
- "huijiwiki",
89
- "shoutwiki"
93
+ "wikimedia"
90
94
  ],
91
95
  "default": null
92
96
  },
@@ -97,8 +101,9 @@
97
101
  "type": "string",
98
102
  "description": "Name of an extension providing useful API endpoints",
99
103
  "enum": [
104
+ "Cargo",
100
105
  "CentralAuth",
101
- "Cargo"
106
+ "OAuth"
102
107
  ]
103
108
  },
104
109
  "default": [],
package/projects.json CHANGED
@@ -28,7 +28,8 @@
28
28
  },
29
29
  "wikiFarm": "wikimedia",
30
30
  "extensions": [
31
- "CentralAuth"
31
+ "CentralAuth",
32
+ "OAuth"
32
33
  ]
33
34
  },
34
35
  {
@@ -44,7 +45,8 @@
44
45
  },
45
46
  "wikiFarm": "wikimedia",
46
47
  "extensions": [
47
- "CentralAuth"
48
+ "CentralAuth",
49
+ "OAuth"
48
50
  ]
49
51
  },
50
52
  {
@@ -60,7 +62,8 @@
60
62
  },
61
63
  "wikiFarm": "wikimedia",
62
64
  "extensions": [
63
- "CentralAuth"
65
+ "CentralAuth",
66
+ "OAuth"
64
67
  ]
65
68
  },
66
69
  {
@@ -76,7 +79,8 @@
76
79
  },
77
80
  "wikiFarm": "wikimedia",
78
81
  "extensions": [
79
- "CentralAuth"
82
+ "CentralAuth",
83
+ "OAuth"
80
84
  ]
81
85
  },
82
86
  {
@@ -92,7 +96,8 @@
92
96
  },
93
97
  "wikiFarm": "wikimedia",
94
98
  "extensions": [
95
- "CentralAuth"
99
+ "CentralAuth",
100
+ "OAuth"
96
101
  ]
97
102
  },
98
103
  {
@@ -108,7 +113,8 @@
108
113
  },
109
114
  "wikiFarm": "wikimedia",
110
115
  "extensions": [
111
- "CentralAuth"
116
+ "CentralAuth",
117
+ "OAuth"
112
118
  ]
113
119
  },
114
120
  {
@@ -124,7 +130,8 @@
124
130
  },
125
131
  "wikiFarm": "wikimedia",
126
132
  "extensions": [
127
- "CentralAuth"
133
+ "CentralAuth",
134
+ "OAuth"
128
135
  ]
129
136
  },
130
137
  {
@@ -140,7 +147,8 @@
140
147
  },
141
148
  "wikiFarm": "wikimedia",
142
149
  "extensions": [
143
- "CentralAuth"
150
+ "CentralAuth",
151
+ "OAuth"
144
152
  ]
145
153
  },
146
154
  {
@@ -156,7 +164,8 @@
156
164
  },
157
165
  "wikiFarm": "wikimedia",
158
166
  "extensions": [
159
- "CentralAuth"
167
+ "CentralAuth",
168
+ "OAuth"
160
169
  ]
161
170
  },
162
171
  {
@@ -172,7 +181,8 @@
172
181
  },
173
182
  "wikiFarm": "wikimedia",
174
183
  "extensions": [
175
- "CentralAuth"
184
+ "CentralAuth",
185
+ "OAuth"
176
186
  ]
177
187
  },
178
188
  {
@@ -188,14 +198,16 @@
188
198
  },
189
199
  "wikiFarm": "wikimedia",
190
200
  "extensions": [
191
- "CentralAuth"
201
+ "CentralAuth",
202
+ "OAuth"
192
203
  ]
193
204
  },
194
205
  {
195
206
  "name": "translatewiki.net",
196
207
  "regex": "(translatewiki\\.net)",
197
208
  "articlePath": "/wiki/",
198
- "scriptPath": "/w/"
209
+ "scriptPath": "/w/",
210
+ "fullScriptPath": "https://translatewiki.net/w/"
199
211
  },
200
212
  {
201
213
  "name": "wiki.gg",
@@ -224,7 +236,8 @@
224
236
  },
225
237
  "wikiFarm": "miraheze",
226
238
  "extensions": [
227
- "CentralAuth"
239
+ "CentralAuth",
240
+ "OAuth"
228
241
  ]
229
242
  },
230
243
  {
@@ -293,13 +306,15 @@
293
306
  "name": "wiki.openstreetmap.org",
294
307
  "regex": "(wiki\\.openstreetmap\\.org)",
295
308
  "articlePath": "/wiki/",
296
- "scriptPath": "/w/"
309
+ "scriptPath": "/w/",
310
+ "fullScriptPath": "https://wiki.openstreetmap.org/w/"
297
311
  },
298
312
  {
299
313
  "name": "pluralpedia.org",
300
314
  "regex": "((?:www\\.)?pluralpedia\\.org)",
301
315
  "articlePath": "/w/",
302
- "scriptPath": "/"
316
+ "scriptPath": "/",
317
+ "fullScriptPath": "https://pluralpedia.org/"
303
318
  },
304
319
  {
305
320
  "name": "stardewvalleywiki.com",
@@ -318,6 +333,7 @@
318
333
  "regex": "((?:www\\.)?pcgamingwiki.com)",
319
334
  "articlePath": "/wiki/",
320
335
  "scriptPath": "/w/",
336
+ "fullScriptPath": "https://www.pcgamingwiki.com/w/",
321
337
  "extensions": [
322
338
  "Cargo"
323
339
  ]
@@ -338,25 +354,29 @@
338
354
  "name": "psu-clementine.net",
339
355
  "regex": "((?:www\\.)?psu-clementine\\.net)",
340
356
  "articlePath": "/wiki/index.php/",
341
- "scriptPath": "/wiki/"
357
+ "scriptPath": "/wiki/",
358
+ "fullScriptPath": "https://psu-clementine.net/wiki/"
342
359
  },
343
360
  {
344
361
  "name": "ddowiki.com",
345
362
  "regex": "((?:www\\.)?ddowiki\\.com)",
346
363
  "articlePath": "/page/",
347
- "scriptPath": "/"
364
+ "scriptPath": "/",
365
+ "fullScriptPath": "https://ddowiki.com/"
348
366
  },
349
367
  {
350
368
  "name": "bakugan.wiki",
351
369
  "regex": "((?:www\\.)?bakugan\\.wiki)",
352
370
  "articlePath": "/wiki/",
353
- "scriptPath": "/"
371
+ "scriptPath": "/",
372
+ "fullScriptPath": "https://bakugan.wiki/"
354
373
  },
355
374
  {
356
375
  "name": "wiki.melvoridle.com",
357
376
  "regex": "(wiki\\.melvoridle\\.com)",
358
377
  "articlePath": "/w/",
359
- "scriptPath": "/"
378
+ "scriptPath": "/",
379
+ "fullScriptPath": "https://wiki.melvoridle.com/"
360
380
  },
361
381
  {
362
382
  "name": "moegirl.org.cn",
@@ -387,19 +407,22 @@
387
407
  "name": "pnpwiki.de",
388
408
  "regex": "((?:www\\.)?pnpwiki\\.de)",
389
409
  "articlePath": "/wiki/",
390
- "scriptPath": "/w/"
410
+ "scriptPath": "/w/",
411
+ "fullScriptPath": "https://pnpwiki.de/w/"
391
412
  },
392
413
  {
393
414
  "name": "blaseball.wiki",
394
415
  "regex": "((?:www\\.)?blaseball\\.wiki)",
395
416
  "articlePath": "/w/",
396
- "scriptPath": "/"
417
+ "scriptPath": "/",
418
+ "fullScriptPath": "https://www.blaseball.wiki/"
397
419
  },
398
420
  {
399
421
  "name": "gbf.wiki",
400
422
  "regex": "((?:www\\.)?gbf\\.wiki)",
401
423
  "articlePath": "/",
402
424
  "scriptPath": "/",
425
+ "fullScriptPath": "https://gbf.wiki/",
403
426
  "extensions": [
404
427
  "Cargo"
405
428
  ]
@@ -408,13 +431,15 @@
408
431
  "name": "wiki.albiononline.com",
409
432
  "regex": "(wiki\\.albiononline\\.com)",
410
433
  "articlePath": "/wiki/",
411
- "scriptPath": "/"
434
+ "scriptPath": "/",
435
+ "fullScriptPath": "https://wiki.albiononline.com/"
412
436
  },
413
437
  {
414
438
  "name": "atitd.wiki",
415
439
  "regex": "((?:www\\.)?atitd\\.wiki)",
416
440
  "articlePath": "/tale10/",
417
441
  "scriptPath": "/tale10/w/",
442
+ "fullScriptPath": "https://atitd.wiki/tale10/w/",
418
443
  "extensions": [
419
444
  "Cargo"
420
445
  ]
@@ -423,19 +448,22 @@
423
448
  "name": "consolegameswiki.com",
424
449
  "regex": "((?:ffxiv\\.)?consolegameswiki\\.com)",
425
450
  "articlePath": "/wiki/",
426
- "scriptPath": "/mediawiki/"
451
+ "scriptPath": "/mediawiki/",
452
+ "fullScriptPath": "https://ffxiv.consolegameswiki.com/mediawiki/"
427
453
  },
428
454
  {
429
455
  "name": "niwanetwork.org",
430
456
  "regex": "((?:www\\.)?niwanetwork\\.org)",
431
457
  "articlePath": "/wiki/",
432
- "scriptPath": "/wiki/"
458
+ "scriptPath": "/wiki/",
459
+ "fullScriptPath": "https://niwanetwork.org/wiki/"
433
460
  },
434
461
  {
435
462
  "name": "armswiki.org",
436
463
  "regex": "((?:www\\.)?armswiki\\.org)",
437
464
  "articlePath": "/wiki/",
438
- "scriptPath": "/w/"
465
+ "scriptPath": "/w/",
466
+ "fullScriptPath": "https://armswiki.org/w/"
439
467
  },
440
468
  {
441
469
  "name": "bulbagarden.net",
@@ -453,49 +481,57 @@
453
481
  "name": "pokewiki.de",
454
482
  "regex": "((?:www\\.)?pokewiki\\.de)",
455
483
  "articlePath": "/",
456
- "scriptPath": "/"
484
+ "scriptPath": "/",
485
+ "fullScriptPath": "https://www.pokewiki.de/"
457
486
  },
458
487
  {
459
488
  "name": "wikidex.net",
460
489
  "regex": "((?:www\\.)?wikidex\\.net)",
461
490
  "articlePath": "/wiki/",
462
- "scriptPath": "/"
491
+ "scriptPath": "/",
492
+ "fullScriptPath": "https://www.wikidex.net/"
463
493
  },
464
494
  {
465
495
  "name": "pokepedia.fr",
466
496
  "regex": "((?:www\\.)?pokepedia\\.fr)",
467
497
  "articlePath": "/",
468
- "scriptPath": "/"
498
+ "scriptPath": "/",
499
+ "fullScriptPath": "https://www.pokepedia.fr/"
469
500
  },
470
501
  {
471
502
  "name": "wiki.pokemoncentral.it",
472
503
  "regex": "(wiki\\.pokemoncentral\\.it)",
473
504
  "articlePath": "/",
474
- "scriptPath": "/"
505
+ "scriptPath": "/",
506
+ "fullScriptPath": "https://wiki.pokemoncentral.it/"
475
507
  },
476
508
  {
477
509
  "name": "wiki.xn--rckteqa2e.com",
478
510
  "regex": "(wiki\\.xn--rckteqa2e\\.com)",
479
511
  "articlePath": "/wiki/",
480
- "scriptPath": "/w/"
512
+ "scriptPath": "/w/",
513
+ "fullScriptPath": "https://wiki.xn--rckteqa2e.com/w/"
481
514
  },
482
515
  {
483
516
  "name": "wiki.ポケモン.com",
484
517
  "regex": "(wiki\\.ポケモン\\.com)",
485
518
  "articlePath": "/wiki/",
486
- "scriptPath": "/w/"
519
+ "scriptPath": "/w/",
520
+ "fullScriptPath": "https://wiki.ポケモン.com/w/"
487
521
  },
488
522
  {
489
523
  "name": "wiki.52poke.com",
490
524
  "regex": "(wiki\\.52poke\\.com)",
491
525
  "articlePath": "/wiki/",
492
- "scriptPath": "/"
526
+ "scriptPath": "/",
527
+ "fullScriptPath": "https://wiki.52poke.com/"
493
528
  },
494
529
  {
495
530
  "name": "dragalialost.wiki",
496
531
  "regex": "((?:www\\.)?dragalialost\\.wiki)",
497
532
  "articlePath": "/w/",
498
533
  "scriptPath": "/",
534
+ "fullScriptPath": "https://dragalialost.wiki/",
499
535
  "extensions": [
500
536
  "Cargo"
501
537
  ]
@@ -504,19 +540,22 @@
504
540
  "name": "dragon-quest.org",
505
541
  "regex": "((?:www\\.)?dragon-quest\\.org)",
506
542
  "articlePath": "/wiki/",
507
- "scriptPath": "/w/"
543
+ "scriptPath": "/w/",
544
+ "fullScriptPath": "https://dragon-quest.org/w/"
508
545
  },
509
546
  {
510
547
  "name": "wikidragonquest.fr",
511
548
  "regex": "((?:www\\.)?wikidragonquest\\.fr)",
512
549
  "articlePath": "/",
513
- "scriptPath": "/"
550
+ "scriptPath": "/",
551
+ "fullScriptPath": "https://wikidragonquest.fr/"
514
552
  },
515
553
  {
516
554
  "name": "fireemblemwiki.org",
517
555
  "regex": "((?:www\\.)?fireemblemwiki\\.org)",
518
556
  "articlePath": "/wiki/",
519
557
  "scriptPath": "/w/",
558
+ "fullScriptPath": "https://fireemblemwiki.org/w/",
520
559
  "extensions": [
521
560
  "Cargo"
522
561
  ]
@@ -525,19 +564,22 @@
525
564
  "name": "mutecity.org",
526
565
  "regex": "((?:www\\.)?mutecity\\.org)",
527
566
  "articlePath": "/wiki/",
528
- "scriptPath": "/w/"
567
+ "scriptPath": "/w/",
568
+ "fullScriptPath": "https://mutecity.org/w/"
529
569
  },
530
570
  {
531
571
  "name": "goldensunwiki.net",
532
572
  "regex": "((?:www\\.)?goldensunwiki\\.net)",
533
573
  "articlePath": "/wiki/",
534
- "scriptPath": "/w/"
574
+ "scriptPath": "/w/",
575
+ "fullScriptPath": "https://goldensunwiki.net/w/"
535
576
  },
536
577
  {
537
578
  "name": "kidicaruswiki.org",
538
579
  "regex": "((?:www\\.)?kidicaruswiki\\.org)",
539
580
  "articlePath": "/wiki/",
540
- "scriptPath": "/w/"
581
+ "scriptPath": "/w/",
582
+ "fullScriptPath": "https://www.kidicaruswiki.org/w/"
541
583
  },
542
584
  {
543
585
  "name": "splatoonwiki.org",
@@ -558,19 +600,22 @@
558
600
  "name": "starfoxwiki.info",
559
601
  "regex": "((?:www\\.)?starfoxwiki\\.info)",
560
602
  "articlePath": "/wiki/",
561
- "scriptPath": "/w/"
603
+ "scriptPath": "/w/",
604
+ "fullScriptPath": "https://starfoxwiki.info/w/"
562
605
  },
563
606
  {
564
607
  "name": "metroidwiki.org",
565
608
  "regex": "((?:www\\.)?metroidwiki\\.org)",
566
609
  "articlePath": "/wiki/",
567
- "scriptPath": "/w/"
610
+ "scriptPath": "/w/",
611
+ "fullScriptPath": "https://www.metroidwiki.org/w/"
568
612
  },
569
613
  {
570
614
  "name": "nookipedia.com",
571
615
  "regex": "((?:www\\.)?nookipedia\\.com)",
572
616
  "articlePath": "/wiki/",
573
617
  "scriptPath": "/w/",
618
+ "fullScriptPath": "https://nookipedia.com/w/",
574
619
  "extensions": [
575
620
  "Cargo"
576
621
  ]
@@ -579,13 +624,15 @@
579
624
  "name": "pikminwiki.com",
580
625
  "regex": "((?:www\\.)?pikminwiki\\.com)",
581
626
  "articlePath": "/",
582
- "scriptPath": "/"
627
+ "scriptPath": "/",
628
+ "fullScriptPath": "https://www.pikminwiki.com/"
583
629
  },
584
630
  {
585
631
  "name": "pikminfanon.com",
586
632
  "regex": "((?:www\\.)?pikminfanon\\.com)",
587
633
  "articlePath": "/wiki/",
588
- "scriptPath": "/w/"
634
+ "scriptPath": "/w/",
635
+ "fullScriptPath": "https://pikminfanon.com/w/"
589
636
  },
590
637
  {
591
638
  "name": "ssbwiki.com",
@@ -603,43 +650,50 @@
603
650
  "name": "starfywiki.org",
604
651
  "regex": "((?:www\\.)?starfywiki\\.org)",
605
652
  "articlePath": "/wiki/",
606
- "scriptPath": "/"
653
+ "scriptPath": "/",
654
+ "fullScriptPath": "https://www.starfywiki.org/"
607
655
  },
608
656
  {
609
657
  "name": "strategywiki.org",
610
658
  "regex": "((?:www\\.)?strategywiki\\.org)",
611
659
  "articlePath": "/wiki/",
612
- "scriptPath": "/w/"
660
+ "scriptPath": "/w/",
661
+ "fullScriptPath": "https://strategywiki.org/w/"
613
662
  },
614
663
  {
615
664
  "name": "mariowiki.com",
616
665
  "regex": "((?:www\\.)?mariowiki\\.com)",
617
666
  "articlePath": "/",
618
- "scriptPath": "/"
667
+ "scriptPath": "/",
668
+ "fullScriptPath": "https://www.mariowiki.com/"
619
669
  },
620
670
  {
621
671
  "name": "mariowiki.net",
622
672
  "regex": "((?:www\\.)?mariowiki\\.net)",
623
673
  "articlePath": "/wiki/",
624
- "scriptPath": "/w/"
674
+ "scriptPath": "/w/",
675
+ "fullScriptPath": "https://mariowiki.net/w/"
625
676
  },
626
677
  {
627
678
  "name": "mariowiki.it",
628
679
  "regex": "((?:www\\.)?mariowiki\\.it)",
629
680
  "articlePath": "/",
630
- "scriptPath": "/"
681
+ "scriptPath": "/",
682
+ "fullScriptPath": "https://www.mariowiki.it/"
631
683
  },
632
684
  {
633
685
  "name": "ukikipedia.net",
634
686
  "regex": "((?:www\\.)?ukikipedia\\.net)",
635
687
  "articlePath": "/wiki/",
636
- "scriptPath": "/mediawiki/"
688
+ "scriptPath": "/mediawiki/",
689
+ "fullScriptPath": "https://ukikipedia.net/mediawiki/"
637
690
  },
638
691
  {
639
692
  "name": "warswiki.org",
640
693
  "regex": "((?:www\\.)?warswiki\\.org)",
641
694
  "articlePath": "/wiki/",
642
- "scriptPath": "/w/"
695
+ "scriptPath": "/w/",
696
+ "fullScriptPath": "https://warswiki.org/w/"
643
697
  },
644
698
  {
645
699
  "name": "wikibound.info",
@@ -657,192 +711,227 @@
657
711
  "name": "wikirby.com",
658
712
  "regex": "((?:www\\.)?wikirby\\.com)",
659
713
  "articlePath": "/wiki/",
660
- "scriptPath": "/w/"
714
+ "scriptPath": "/w/",
715
+ "fullScriptPath": "https://wikirby.com/w/"
661
716
  },
662
717
  {
663
718
  "name": "xenoserieswiki.org",
664
719
  "regex": "((?:www\\.)?xenoserieswiki\\.org)",
665
720
  "articlePath": "/wiki/",
666
- "scriptPath": "/w/"
721
+ "scriptPath": "/w/",
722
+ "fullScriptPath": "https://www.xenoserieswiki.org/w/"
667
723
  },
668
724
  {
669
725
  "name": "xenopedia.it",
670
726
  "regex": "((?:www\\.)?xenopedia\\.it)",
671
727
  "articlePath": "/",
672
- "scriptPath": "/"
728
+ "scriptPath": "/",
729
+ "fullScriptPath": "https://www.xenopedia.it/"
673
730
  },
674
731
  {
675
732
  "name": "zeldapendium.de",
676
733
  "regex": "((?:www\\.)?zeldapendium\\.de)",
677
734
  "articlePath": "/wiki/",
678
- "scriptPath": "/w/"
735
+ "scriptPath": "/w/",
736
+ "fullScriptPath": "https://www.zeldapendium.de/w/"
679
737
  },
680
738
  {
681
739
  "name": "halopedia.org",
682
740
  "regex": "((?:www\\.)?halopedia\\.org)",
683
741
  "articlePath": "/",
684
- "scriptPath": "/"
742
+ "scriptPath": "/",
743
+ "fullScriptPath": "https://www.halopedia.org/"
685
744
  },
686
745
  {
687
746
  "name": "jojowiki.com",
688
747
  "regex": "((?:www\\.)?jojowiki\\.com)",
689
748
  "articlePath": "/",
690
- "scriptPath": "/"
749
+ "scriptPath": "/",
750
+ "fullScriptPath": "https://jojowiki.com/"
691
751
  },
692
752
  {
693
753
  "name": "wikimon.net",
694
754
  "regex": "((?:www\\.)?wikimon\\.net)",
695
755
  "articlePath": "/",
696
- "scriptPath": "/"
756
+ "scriptPath": "/",
757
+ "fullScriptPath": "https://wikimon.net/"
697
758
  },
698
759
  {
699
760
  "name": "khwiki.com",
700
761
  "regex": "((?:www\\.)?khwiki\\.com)",
701
762
  "articlePath": "/",
702
- "scriptPath": "/"
763
+ "scriptPath": "/",
764
+ "fullScriptPath": "https://www.khwiki.com/"
703
765
  },
704
766
  {
705
767
  "name": "chronowiki.org",
706
768
  "regex": "((?:www\\.)?chronowiki\\.org)",
707
769
  "articlePath": "/wiki/",
708
- "scriptPath": "/w/"
770
+ "scriptPath": "/w/",
771
+ "fullScriptPath": "https://www.chronowiki.org/w/"
709
772
  },
710
773
  {
711
774
  "name": "finalfantasywiki.com",
712
775
  "regex": "((?:www\\.)?finalfantasywiki\\.com)",
713
776
  "articlePath": "/wiki/",
714
- "scriptPath": "/w/"
777
+ "scriptPath": "/w/",
778
+ "fullScriptPath": "https://finalfantasywiki.com/w/"
715
779
  },
716
780
  {
717
781
  "name": "miiwiki.org",
718
782
  "regex": "((?:www\\.)?miiwiki\\.org)",
719
783
  "articlePath": "/wiki/",
720
- "scriptPath": "/w/"
784
+ "scriptPath": "/w/",
785
+ "fullScriptPath": "https://miiwiki.org/w/"
721
786
  },
722
787
  {
723
788
  "name": "banjokazooiewiki.com",
724
789
  "regex": "((?:www\\.)?banjokazooiewiki\\.com)",
725
790
  "articlePath": "/wiki/",
726
- "scriptPath": "/w/"
791
+ "scriptPath": "/w/",
792
+ "fullScriptPath": "https://banjokazooiewiki.com/w/"
727
793
  },
728
794
  {
729
795
  "name": "conkerwiki.com",
730
796
  "regex": "((?:www\\.)?conkerwiki\\.com)",
731
797
  "articlePath": "/wiki/",
732
- "scriptPath": "/w/"
798
+ "scriptPath": "/w/",
799
+ "fullScriptPath": "https://conkerwiki.com/w/"
733
800
  },
734
801
  {
735
802
  "name": "crashbandicootwiki.com",
736
803
  "regex": "((?:www\\.)?crashbandicootwiki\\.com)",
737
804
  "articlePath": "/wiki/",
738
- "scriptPath": "/w/"
805
+ "scriptPath": "/w/",
806
+ "fullScriptPath": "https://crashbandicootwiki.com/w/"
739
807
  },
740
808
  {
741
809
  "name": "spyrowiki.com",
742
810
  "regex": "((?:www\\.)?spyrowiki\\.com)",
743
811
  "articlePath": "/wiki/",
744
- "scriptPath": "/w/"
812
+ "scriptPath": "/w/",
813
+ "fullScriptPath": "https://spyrowiki.com/w/"
745
814
  },
746
815
  {
747
816
  "name": "triforcewiki.com",
748
817
  "regex": "((?:www\\.)?triforcewiki\\.com)",
749
818
  "articlePath": "/wiki/",
750
- "scriptPath": "/w/"
819
+ "scriptPath": "/w/",
820
+ "fullScriptPath": "https://triforcewiki.com/w/"
751
821
  },
752
822
  {
753
823
  "name": "wikiofmana.com",
754
824
  "regex": "((?:www\\.)?wikiofmana\\.com)",
755
825
  "articlePath": "/wiki/",
756
- "scriptPath": "/w/"
826
+ "scriptPath": "/w/",
827
+ "fullScriptPath": "https://wikiofmana.com/w/"
757
828
  },
758
829
  {
759
830
  "name": "rarewiki.com",
760
831
  "regex": "((?:www\\.)?rarewiki\\.com)",
761
832
  "articlePath": "/wiki/",
762
- "scriptPath": "/w/"
833
+ "scriptPath": "/w/",
834
+ "fullScriptPath": "https://rarewiki.com/w/"
763
835
  },
764
836
  {
765
837
  "name": "arthurwiki.com",
766
838
  "regex": "((?:www\\.)?arthurwiki\\.com)",
767
839
  "articlePath": "/wiki/",
768
- "scriptPath": "/w/"
840
+ "scriptPath": "/w/",
841
+ "fullScriptPath": "https://arthurwiki.com/w/"
769
842
  },
770
843
  {
771
844
  "name": "sanriowiki.com",
772
845
  "regex": "((?:www\\.)?sanriowiki\\.com)",
773
846
  "articlePath": "/wiki/",
774
- "scriptPath": "/w/"
847
+ "scriptPath": "/w/",
848
+ "fullScriptPath": "https://sanriowiki.com/w/"
775
849
  },
776
850
  {
777
851
  "name": "spongebobwiki.org",
778
852
  "regex": "((?:www\\.)?spongebobwiki\\.org)",
779
853
  "articlePath": "/wiki/",
780
- "scriptPath": "/w/"
854
+ "scriptPath": "/w/",
855
+ "fullScriptPath": "https://spongebobwiki.org/w/"
781
856
  },
782
857
  {
783
858
  "name": "wimpykidwiki.com",
784
859
  "regex": "((?:www\\.)?wimpykidwiki\\.com)",
785
860
  "articlePath": "/wiki/",
786
- "scriptPath": "/w/"
861
+ "scriptPath": "/w/",
862
+ "fullScriptPath": "https://wimpykidwiki.com/w/"
787
863
  },
788
864
  {
789
865
  "name": "zeldadungeon.net",
790
866
  "regex": "((?:www\\.)?zeldadungeon\\.net)",
791
867
  "articlePath": "/wiki/",
792
- "scriptPath": "/wiki/"
868
+ "scriptPath": "/wiki/",
869
+ "fullScriptPath": "https://www.zeldadungeon.net/wiki/"
793
870
  },
794
871
  {
795
872
  "name": "poewiki.net",
796
873
  "regex": "((?:www\\.)?poewiki\\.net)",
797
874
  "articlePath": "/wiki/",
798
- "scriptPath": "/w/"
875
+ "scriptPath": "/w/",
876
+ "fullScriptPath": "https://www.poewiki.net/w/"
799
877
  },
800
878
  {
801
879
  "name": "wikihow.com",
802
880
  "regex": "((?:www\\.)?wikihow\\.com)",
803
881
  "articlePath": "/",
804
882
  "scriptPath": "/",
883
+ "fullScriptPath": "https://www.wikihow.com/",
805
884
  "urlSpaceReplacement": "-"
806
885
  },
807
886
  {
808
887
  "name": "librewiki.net",
809
888
  "regex": "(librewiki\\.net)",
810
889
  "articlePath": "/wiki/",
811
- "scriptPath": "/"
890
+ "scriptPath": "/",
891
+ "fullScriptPath": "https://librewiki.net/"
812
892
  },
813
893
  {
814
894
  "name": "femiwiki.com",
815
895
  "regex": "((?:www\\.)?femiwiki\\.com)",
816
896
  "articlePath": "/w/",
817
- "scriptPath": "/"
897
+ "scriptPath": "/",
898
+ "fullScriptPath": "https://femiwiki.com/"
818
899
  },
819
900
  {
820
901
  "name": "revi.wiki",
821
902
  "regex": "(revi\\.wiki)",
822
903
  "articlePath": "/wiki/",
823
904
  "scriptPath": "/w/",
905
+ "fullScriptPath": "https://revi.wiki/w/",
824
906
  "wikiFarm": "miraheze",
825
907
  "extensions": [
826
- "CentralAuth"
908
+ "CentralAuth",
909
+ "OAuth"
827
910
  ]
828
911
  },
829
912
  {
830
913
  "name": "lakeus.xyz",
831
914
  "regex": "(lakeus\\.xyz)",
832
915
  "articlePath": "/wiki/",
833
- "scriptPath": "/"
916
+ "scriptPath": "/",
917
+ "fullScriptPath": "https://lakeus.xyz/",
918
+ "extensions": [
919
+ "OAuth"
920
+ ]
834
921
  },
835
922
  {
836
923
  "name": "betawiki.net",
837
924
  "regex": "((?:www\\.)?betawiki\\.net)",
838
925
  "articlePath": "/wiki/",
839
- "scriptPath": "/"
926
+ "scriptPath": "/",
927
+ "fullScriptPath": "https://betawiki.net/"
840
928
  },
841
929
  {
842
930
  "name": "destinypedia.com",
843
931
  "regex": "((?:www\\.)?destinypedia\\.com)",
844
932
  "articlePath": "/",
845
- "scriptPath": "/"
933
+ "scriptPath": "/",
934
+ "fullScriptPath": "https://www.destinypedia.com/"
846
935
  },
847
936
  {
848
937
  "name": "grifkuba.net",
@@ -860,49 +949,57 @@
860
949
  "name": "wiki.teamfortress.com",
861
950
  "regex": "(wiki\\.teamfortress\\.com)",
862
951
  "articlePath": "/wiki/",
863
- "scriptPath": "/w/"
952
+ "scriptPath": "/w/",
953
+ "fullScriptPath": "https://wiki.teamfortress.com/w/"
864
954
  },
865
955
  {
866
956
  "name": "lain.wiki",
867
957
  "regex": "((?:www\\.)?lain\\.wiki)",
868
958
  "articlePath": "/wiki/",
869
- "scriptPath": "/"
959
+ "scriptPath": "/",
960
+ "fullScriptPath": "https://lain.wiki/"
870
961
  },
871
962
  {
872
963
  "name": "khuxwiki.com",
873
964
  "regex": "((?:www\\.)?khuxwiki\\.com)",
874
965
  "articlePath": "/wiki/",
875
- "scriptPath": "/w/"
966
+ "scriptPath": "/w/",
967
+ "fullScriptPath": "https://www.khuxwiki.com/w/"
876
968
  },
877
969
  {
878
970
  "name": "khdatabase.com",
879
971
  "regex": "((?:www\\.)?khdatabase\\.com)",
880
972
  "articlePath": "/",
881
- "scriptPath": "/"
973
+ "scriptPath": "/",
974
+ "fullScriptPath": "https://www.khdatabase.com/"
882
975
  },
883
976
  {
884
977
  "name": "wiki.halo.fr",
885
978
  "regex": "(wiki\\.halo\\.fr)",
886
979
  "articlePath": "/",
887
- "scriptPath": "/"
980
+ "scriptPath": "/",
981
+ "fullScriptPath": "https://wiki.halo.fr/"
888
982
  },
889
983
  {
890
984
  "name": "glitchtale.com",
891
985
  "regex": "((?:www\\.)?glitchtale\\.com)",
892
986
  "articlePath": "/wiki/index.php/",
893
- "scriptPath": "/wiki/"
987
+ "scriptPath": "/wiki/",
988
+ "fullScriptPath": "https://glitchtale.com/wiki/"
894
989
  },
895
990
  {
896
991
  "name": "wiki.therofl98.co",
897
992
  "regex": "(wiki\\.therofl98\\.co)",
898
993
  "articlePath": "/wiki/",
899
- "scriptPath": "/w/"
994
+ "scriptPath": "/w/",
995
+ "fullScriptPath": "https://wiki.therofl98.co/w/"
900
996
  },
901
997
  {
902
998
  "name": "yugipedia.com",
903
999
  "regex": "((?:www\\.)?yugipedia\\.com)",
904
1000
  "articlePath": "/wiki/",
905
- "scriptPath": "/"
1001
+ "scriptPath": "/",
1002
+ "fullScriptPath": "https://yugipedia.com/"
906
1003
  },
907
1004
  {
908
1005
  "name": "polandballwiki.com",
@@ -917,26 +1014,30 @@
917
1014
  },
918
1015
  "wikiFarm": "miraheze",
919
1016
  "extensions": [
920
- "CentralAuth"
1017
+ "CentralAuth",
1018
+ "OAuth"
921
1019
  ]
922
1020
  },
923
1021
  {
924
1022
  "name": "lostmediawiki.com",
925
1023
  "regex": "((?:www\\.)?lostmediawiki\\.com)",
926
1024
  "articlePath": "/",
927
- "scriptPath": "/"
1025
+ "scriptPath": "/",
1026
+ "fullScriptPath": "https://lostmediawiki.com/"
928
1027
  },
929
1028
  {
930
1029
  "name": "amiibopedia.com",
931
1030
  "regex": "((?:es\\.)?amiibopedia\\.com)",
932
1031
  "articlePath": "/wiki/",
933
- "scriptPath": "/"
1032
+ "scriptPath": "/",
1033
+ "fullScriptPath": "https://es.amiibopedia.com/"
934
1034
  },
935
1035
  {
936
1036
  "name": "tcrf.net",
937
1037
  "regex": "((?:www\\.)?tcrf\\.net)",
938
1038
  "articlePath": "/",
939
- "scriptPath": "/"
1039
+ "scriptPath": "/",
1040
+ "fullScriptPath": "https://tcrf.net/"
940
1041
  },
941
1042
  {
942
1043
  "name": "raymanpc.com",
@@ -955,25 +1056,29 @@
955
1056
  "name": "theinfosphere.org",
956
1057
  "regex": "((?:www\\.)?theinfosphere\\.org)",
957
1058
  "articlePath": "/",
958
- "scriptPath": "/"
1059
+ "scriptPath": "/",
1060
+ "fullScriptPath": "https://theinfosphere.org/"
959
1061
  },
960
1062
  {
961
1063
  "name": "simpsonspedia.net",
962
1064
  "regex": "(simpsonspedia\\.net)",
963
1065
  "articlePath": "/index.php?title=",
964
- "scriptPath": "/"
1066
+ "scriptPath": "/",
1067
+ "fullScriptPath": "https://simpsonspedia.net/"
965
1068
  },
966
1069
  {
967
1070
  "name": "info.sonicretro.org",
968
1071
  "regex": "(info\\.sonicretro\\.org)",
969
1072
  "articlePath": "/",
970
- "scriptPath": "/"
1073
+ "scriptPath": "/",
1074
+ "fullScriptPath": "https://info.sonicretro.org/"
971
1075
  },
972
1076
  {
973
1077
  "name": "segaretro.org",
974
1078
  "regex": "((?:www\\.)?segaretro\\.org)",
975
1079
  "articlePath": "/",
976
1080
  "scriptPath": "/",
1081
+ "fullScriptPath": "https://segaretro.org/",
977
1082
  "extensions": [
978
1083
  "Cargo"
979
1084
  ]
@@ -982,13 +1087,15 @@
982
1087
  "name": "necretro.org",
983
1088
  "regex": "(necretro\\.org)",
984
1089
  "articlePath": "/",
985
- "scriptPath": "/"
1090
+ "scriptPath": "/",
1091
+ "fullScriptPath": "https://necretro.org/"
986
1092
  },
987
1093
  {
988
1094
  "name": "retrocdn.net",
989
1095
  "regex": "((?:www\\.)?retrocdn\\.net)",
990
1096
  "articlePath": "/",
991
- "scriptPath": "/"
1097
+ "scriptPath": "/",
1098
+ "fullScriptPath": "https://retrocdn.net/"
992
1099
  },
993
1100
  {
994
1101
  "name": "banglapedia.org",
@@ -1006,31 +1113,41 @@
1006
1113
  "name": "semantic-mediawiki.org",
1007
1114
  "regex": "((?:www\\.)?semantic-mediawiki\\.org)",
1008
1115
  "articlePath": "/wiki/",
1009
- "scriptPath": "/w/"
1116
+ "scriptPath": "/w/",
1117
+ "fullScriptPath": "https://www.semantic-mediawiki.org/w/"
1010
1118
  },
1011
1119
  {
1012
1120
  "name": "wikizilla.org",
1013
1121
  "regex": "((?:www\\.)?wikizilla\\.org)",
1014
1122
  "articlePath": "/wiki/",
1015
- "scriptPath": "/w/"
1123
+ "scriptPath": "/w/",
1124
+ "fullScriptPath": "https://wikizilla.org/w/"
1016
1125
  },
1017
1126
  {
1018
1127
  "name": "wiki.gentoo.org",
1019
1128
  "regex": "(wiki\\.gentoo\\.org)",
1020
1129
  "articlePath": "/wiki/",
1021
- "scriptPath": "/"
1130
+ "scriptPath": "/",
1131
+ "fullScriptPath": "https://wiki.gentoo.org/"
1022
1132
  },
1023
1133
  {
1024
1134
  "name": "pidgi.net",
1025
1135
  "regex": "((?:www\\.)?pidgi\\.net)",
1026
1136
  "articlePath": "/wiki/",
1027
- "scriptPath": "/wiki/"
1137
+ "scriptPath": "/wiki/",
1138
+ "fullScriptPath": "https://www.pidgi.net/wiki/"
1028
1139
  },
1029
1140
  {
1030
1141
  "name": "rct.wiki",
1031
1142
  "regex": "(rct\\.wiki)",
1032
1143
  "articlePath": "/wiki/",
1033
- "scriptPath": "/w/"
1144
+ "scriptPath": "/w/",
1145
+ "fullScriptPath": "https://rct.wiki/w/",
1146
+ "wikiFarm": "miraheze",
1147
+ "extensions": [
1148
+ "CentralAuth",
1149
+ "OAuth"
1150
+ ]
1034
1151
  },
1035
1152
  {
1036
1153
  "name": "touhouwiki.net",
@@ -1060,43 +1177,50 @@
1060
1177
  "name": "ufopaedia.org",
1061
1178
  "regex": "((?:www\\.)?ufopaedia\\.org)",
1062
1179
  "articlePath": "/index.php/",
1063
- "scriptPath": "/"
1180
+ "scriptPath": "/",
1181
+ "fullScriptPath": "https://www.ufopaedia.org/"
1064
1182
  },
1065
1183
  {
1066
1184
  "name": "wiibrew.org",
1067
1185
  "regex": "((?:www\\.)?wiibrew\\.org)",
1068
1186
  "articlePath": "/wiki/",
1069
- "scriptPath": "/w/"
1187
+ "scriptPath": "/w/",
1188
+ "fullScriptPath": "https://wiibrew.org/w/"
1070
1189
  },
1071
1190
  {
1072
1191
  "name": "wiiubrew.org",
1073
1192
  "regex": "((?:www\\.)?wiiubrew\\.org)",
1074
1193
  "articlePath": "/wiki/",
1075
- "scriptPath": "/w/"
1194
+ "scriptPath": "/w/",
1195
+ "fullScriptPath": "https://wiiubrew.org/w/"
1076
1196
  },
1077
1197
  {
1078
1198
  "name": "dsibrew.org",
1079
1199
  "regex": "((?:www\\.)?dsibrew\\.org)",
1080
1200
  "articlePath": "/wiki/",
1081
- "scriptPath": "/w/"
1201
+ "scriptPath": "/w/",
1202
+ "fullScriptPath": "https://dsibrew.org/w/"
1082
1203
  },
1083
1204
  {
1084
1205
  "name": "3dbrew.org",
1085
1206
  "regex": "((?:www\\.)?3dbrew\\.org)",
1086
1207
  "articlePath": "/wiki/",
1087
- "scriptPath": "/w/"
1208
+ "scriptPath": "/w/",
1209
+ "fullScriptPath": "https://www.3dbrew.org/w/"
1088
1210
  },
1089
1211
  {
1090
1212
  "name": "switchbrew.org",
1091
1213
  "regex": "((?:www\\.)?switchbrew\\.org)",
1092
1214
  "articlePath": "/wiki/",
1093
- "scriptPath": "/w/"
1215
+ "scriptPath": "/w/",
1216
+ "fullScriptPath": "https://switchbrew.org/w/"
1094
1217
  },
1095
1218
  {
1096
1219
  "name": "explainxkcd.com",
1097
1220
  "regex": "((?:www\\.)?explainxkcd\\.com)",
1098
1221
  "articlePath": "/wiki/index.php/",
1099
- "scriptPath": "/wiki/"
1222
+ "scriptPath": "/wiki/",
1223
+ "fullScriptPath": "https://www.explainxkcd.com/wiki/"
1100
1224
  },
1101
1225
  {
1102
1226
  "name": "rationalwiki.org",
@@ -1126,19 +1250,22 @@
1126
1250
  "name": "timespinnerwiki.com",
1127
1251
  "regex": "((?:www\\.)?timespinnerwiki\\.com)",
1128
1252
  "articlePath": "/",
1129
- "scriptPath": "/mediawiki/"
1253
+ "scriptPath": "/mediawiki/",
1254
+ "fullScriptPath": "https://timespinnerwiki.com/mediawiki/"
1130
1255
  },
1131
1256
  {
1132
1257
  "name": "starmancerwiki.com",
1133
1258
  "regex": "((?:www\\.)?starmancerwiki\\.com)",
1134
1259
  "articlePath": "/",
1135
- "scriptPath": "/mediawiki/"
1260
+ "scriptPath": "/mediawiki/",
1261
+ "fullScriptPath": "https://starmancerwiki.com/mediawiki/"
1136
1262
  },
1137
1263
  {
1138
1264
  "name": "lotro-wiki.com",
1139
1265
  "regex": "((?:www\\.)?lotro-wiki\\.com)",
1140
1266
  "articlePath": "/index.php/",
1141
- "scriptPath": "/"
1267
+ "scriptPath": "/",
1268
+ "fullScriptPath": "https://lotro-wiki.com/"
1142
1269
  },
1143
1270
  {
1144
1271
  "name": "scoutwiki.org",
@@ -1156,13 +1283,15 @@
1156
1283
  "name": "wiki.archlinux.org",
1157
1284
  "regex": "(wiki\\.archlinux\\.org)",
1158
1285
  "articlePath": "/title/",
1159
- "scriptPath": "/"
1286
+ "scriptPath": "/",
1287
+ "fullScriptPath": "https://wiki.archlinux.org/"
1160
1288
  },
1161
1289
  {
1162
1290
  "name": "dandwiki.com",
1163
1291
  "regex": "((?:www\\.)?dandwiki.com)",
1164
1292
  "articlePath": "/wiki/",
1165
- "scriptPath": "/w/"
1293
+ "scriptPath": "/w/",
1294
+ "fullScriptPath": "https://www.dandwiki.com/w/"
1166
1295
  },
1167
1296
  {
1168
1297
  "name": "vikidia.org",
@@ -1192,73 +1321,85 @@
1192
1321
  "name": "wiki.hypixel.net",
1193
1322
  "regex": "(wiki\\.hypixel\\.net)",
1194
1323
  "articlePath": "/",
1195
- "scriptPath": "/"
1324
+ "scriptPath": "/",
1325
+ "fullScriptPath": "https://wiki.hypixel.net/"
1196
1326
  },
1197
1327
  {
1198
1328
  "name": "wiki.serenesforest.net",
1199
1329
  "regex": "(wiki\\.serenesforest\\.net)",
1200
1330
  "articlePath": "/index.php/",
1201
- "scriptPath": "/"
1331
+ "scriptPath": "/",
1332
+ "fullScriptPath": "https://wiki.serenesforest.net/"
1202
1333
  },
1203
1334
  {
1204
1335
  "name": "wiki.seiwanetwork.org",
1205
1336
  "regex": "(wiki\\.seiwanetwork\\.org)",
1206
1337
  "articlePath": "/wiki/",
1207
- "scriptPath": "/w/"
1338
+ "scriptPath": "/w/",
1339
+ "fullScriptPath": "https://wiki.seiwanetwork.org/w/"
1208
1340
  },
1209
1341
  {
1210
1342
  "name": "hiddenpalace.org",
1211
1343
  "regex": "((?:www\\.)?hiddenpalace\\.org)",
1212
1344
  "articlePath": "/",
1213
- "scriptPath": "/w/"
1345
+ "scriptPath": "/w/",
1346
+ "fullScriptPath": "https://hiddenpalace.org/w/"
1214
1347
  },
1215
1348
  {
1216
1349
  "name": "developer.valvesoftware.com",
1217
1350
  "regex": "(developer\\.valvesoftware\\.com)",
1218
1351
  "articlePath": "/wiki/",
1219
- "scriptPath": "/w/"
1352
+ "scriptPath": "/w/",
1353
+ "fullScriptPath": "https://developer.valvesoftware.com/w/"
1220
1354
  },
1221
1355
  {
1222
1356
  "name": "pixelmonmod.com",
1223
1357
  "regex": "((?:www\\.)?pixelmonmod\\.com)",
1224
1358
  "articlePath": "/wiki/",
1225
- "scriptPath": "/w/"
1359
+ "scriptPath": "/w/",
1360
+ "fullScriptPath": "https://pixelmonmod.com/w/"
1226
1361
  },
1227
1362
  {
1228
1363
  "name": "dmowiki.com",
1229
1364
  "regex": "((?:www\\.)?dmowiki\\.com)",
1230
1365
  "articlePath": "/",
1231
- "scriptPath": "/"
1366
+ "scriptPath": "/",
1367
+ "fullScriptPath": "https://dmowiki.com/"
1232
1368
  },
1233
1369
  {
1234
1370
  "name": "awoiaf.westeros.org",
1235
1371
  "regex": "(awoiaf\\.westeros\\.org)",
1236
1372
  "articlePath": "/index.php/",
1237
- "scriptPath": "/"
1373
+ "scriptPath": "/",
1374
+ "fullScriptPath": "https://awoiaf.westeros.org/"
1238
1375
  },
1239
1376
  {
1240
1377
  "name": "westeros.ir",
1241
1378
  "regex": "((?:www\\.)?westeros\\.ir)",
1242
1379
  "articlePath": "/wiki/index.php?title=",
1243
- "scriptPath": "/wiki/"
1380
+ "scriptPath": "/wiki/",
1381
+ "fullScriptPath": "https://westeros.ir/wiki/"
1244
1382
  },
1245
1383
  {
1246
1384
  "name": "lagardedenuit.com",
1247
1385
  "regex": "((?:www\\.)?lagardedenuit\\.com)",
1248
1386
  "articlePath": "/wiki/index.php?title=",
1249
- "scriptPath": "/wiki/"
1387
+ "scriptPath": "/wiki/",
1388
+ "fullScriptPath": "https://www.lagardedenuit.com/wiki/"
1250
1389
  },
1251
1390
  {
1252
1391
  "name": "7kingdoms.ru",
1253
1392
  "regex": "((?:www\\.)?7kingdoms\\.ru)",
1254
1393
  "articlePath": "/wiki/",
1255
- "scriptPath": "/w/"
1394
+ "scriptPath": "/w/",
1395
+ "fullScriptPath": "https://7kingdoms.ru/w/"
1256
1396
  },
1257
1397
  {
1258
1398
  "name": "wiki.geloefogo.com",
1259
1399
  "regex": "(wiki\\.geloefogo\\.com)",
1260
1400
  "articlePath": "/index.php/",
1261
- "scriptPath": "/"
1401
+ "scriptPath": "/",
1402
+ "fullScriptPath": "https://wiki.geloefogo.com/"
1262
1403
  },
1263
1404
  {
1264
1405
  "name": "huijiwiki.com",
@@ -1277,13 +1418,15 @@
1277
1418
  "name": "chocolate-doom.org",
1278
1419
  "regex": "((?:www\\.)?chocolate-doom\\.org)",
1279
1420
  "articlePath": "/wiki/index.php/",
1280
- "scriptPath": "/wiki/"
1421
+ "scriptPath": "/wiki/",
1422
+ "fullScriptPath": "https://www.chocolate-doom.org/wiki/"
1281
1423
  },
1282
1424
  {
1283
1425
  "name": "glitchcity.wiki",
1284
1426
  "regex": "((?:www\\.)?glitchcity\\.wiki)",
1285
1427
  "articlePath": "/",
1286
- "scriptPath": "/"
1428
+ "scriptPath": "/",
1429
+ "fullScriptPath": "https://glitchcity.wiki/"
1287
1430
  },
1288
1431
  {
1289
1432
  "name": "playstationdev.wiki",
@@ -1313,31 +1456,36 @@
1313
1456
  "name": "wiki.henkaku.xyz",
1314
1457
  "regex": "(wiki\\.henkaku\\.xyz)",
1315
1458
  "articlePath": "/vita/",
1316
- "scriptPath": "/vita/"
1459
+ "scriptPath": "/vita/",
1460
+ "fullScriptPath": "https://wiki.henkaku.xyz/vita/"
1317
1461
  },
1318
1462
  {
1319
1463
  "name": "wiki.raregamingdump.ca",
1320
1464
  "regex": "(wiki\\.raregamingdump\\.ca)",
1321
1465
  "articlePath": "/index.php/",
1322
- "scriptPath": "/"
1466
+ "scriptPath": "/",
1467
+ "fullScriptPath": "https://wiki.raregamingdump.ca/"
1323
1468
  },
1324
1469
  {
1325
1470
  "name": "sttwiki.org",
1326
1471
  "regex": "((?:www\\.)?sttwiki\\.org)",
1327
1472
  "articlePath": "/wiki/",
1328
- "scriptPath": "/"
1473
+ "scriptPath": "/",
1474
+ "fullScriptPath": "https://sttwiki.org/"
1329
1475
  },
1330
1476
  {
1331
1477
  "name": "wavu.wiki",
1332
1478
  "regex": "((?:www\\.)?wavu\\.wiki)",
1333
1479
  "articlePath": "/t/",
1334
- "scriptPath": "/w/"
1480
+ "scriptPath": "/w/",
1481
+ "fullScriptPath": "https://wavu.wiki/w/"
1335
1482
  },
1336
1483
  {
1337
1484
  "name": "blazblue.wiki",
1338
1485
  "regex": "((?:www\\.)?blazblue\\.wiki)",
1339
1486
  "articlePath": "/wiki/",
1340
1487
  "scriptPath": "/",
1488
+ "fullScriptPath": "https://blazblue.wiki/",
1341
1489
  "extensions": [
1342
1490
  "Cargo"
1343
1491
  ]
@@ -1347,6 +1495,7 @@
1347
1495
  "regex": "((?:www\\.)?archives\\.org\\.au)",
1348
1496
  "articlePath": "/",
1349
1497
  "scriptPath": "/",
1498
+ "fullScriptPath": "https://archives.org.au/",
1350
1499
  "extensions": [
1351
1500
  "Cargo"
1352
1501
  ]
@@ -1355,25 +1504,29 @@
1355
1504
  "name": "dragon-mania-legends.wiki",
1356
1505
  "regex": "((?:www\\.)?dragon-mania-legends\\.wiki)",
1357
1506
  "articlePath": "/",
1358
- "scriptPath": "/"
1507
+ "scriptPath": "/",
1508
+ "fullScriptPath": "https://www.dragon-mania-legends.wiki/"
1359
1509
  },
1360
1510
  {
1361
1511
  "name": "wiki.guildwars.com",
1362
1512
  "regex": "(wiki\\.guildwars\\.com)",
1363
1513
  "articlePath": "/wiki/",
1364
- "scriptPath": "/"
1514
+ "scriptPath": "/",
1515
+ "fullScriptPath": "https://wiki.guildwars.com/"
1365
1516
  },
1366
1517
  {
1367
1518
  "name": "guildwiki.de",
1368
1519
  "regex": "((?:www\\.)?guildwiki\\.de)",
1369
1520
  "articlePath": "/wiki/",
1370
- "scriptPath": "/gwiki/"
1521
+ "scriptPath": "/gwiki/",
1522
+ "fullScriptPath": "https://www.guildwiki.de/gwiki/"
1371
1523
  },
1372
1524
  {
1373
1525
  "name": "gwiki.fr",
1374
1526
  "regex": "((?:www\\.)?gwiki\\.fr)",
1375
1527
  "articlePath": "/wiki/",
1376
- "scriptPath": "/w/"
1528
+ "scriptPath": "/w/",
1529
+ "fullScriptPath": "https://www.gwiki.fr/w/"
1377
1530
  },
1378
1531
  {
1379
1532
  "name": "guildwars2.com",
@@ -1391,13 +1544,39 @@
1391
1544
  "name": "ashesofcreation.wiki",
1392
1545
  "regex": "((?:www\\.)?ashesofcreation\\.wiki)",
1393
1546
  "articlePath": "/",
1394
- "scriptPath": "/"
1547
+ "scriptPath": "/",
1548
+ "fullScriptPath": "https://ashesofcreation.wiki/"
1395
1549
  },
1396
1550
  {
1397
1551
  "name": "drawntolife.wiki",
1398
1552
  "regex": "((?:www\\.)?drawntolife\\.wiki)",
1399
1553
  "articlePath": "/en/",
1400
- "scriptPath": "/w/"
1554
+ "scriptPath": "/w/",
1555
+ "fullScriptPath": "https://drawntolife.wiki/w/"
1556
+ },
1557
+ {
1558
+ "name": "dragdown.wiki",
1559
+ "regex": "(dragdown\\.wiki)",
1560
+ "articlePath": "/wiki/",
1561
+ "scriptPath": "/w/",
1562
+ "fullScriptPath": "https://dragdown.wiki/w/",
1563
+ "wikiFarm": "miraheze",
1564
+ "extensions": [
1565
+ "CentralAuth",
1566
+ "OAuth"
1567
+ ]
1568
+ },
1569
+ {
1570
+ "name": "dc-multiverse.dcwikis.com",
1571
+ "regex": "(dc-multiverse\\.dcwikis\\.com)",
1572
+ "articlePath": "/wiki/",
1573
+ "scriptPath": "/w/",
1574
+ "fullScriptPath": "https://dc-multiverse.dcwikis.com/w/",
1575
+ "wikiFarm": "miraheze",
1576
+ "extensions": [
1577
+ "CentralAuth",
1578
+ "OAuth"
1579
+ ]
1401
1580
  },
1402
1581
  {
1403
1582
  "name": "liquipedia.net",