summaryrefslogtreecommitdiff
path: root/wappalyzer/src/technologies/t.json
blob: 562f3ef6d2654293dddd14051c1a4de6f7d1fbd2 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
{
  "T-Soft": {
    "cats": [
      6
    ],
    "html": "<a href=\"http://www\\.tsoft\\.com\\.tr\" target=\"_blank\" title=\"T-Soft E-ticaret Sistemleri\">",
    "icon": "Tsoft.png",
    "website": "https://www.tsoft.com.tr/"
  },
  "THG Ingenuity": {
    "cats": [
      6
    ],
    "description": "THG Ingenuity is completely unique in that it's both a peer-to-peer ecommerce retailer and a service provider to global cross-border commerce operations.",
    "icon": "THG Ingenuity.png",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": [
      "THEHUT-.*\\.js"
    ],
    "website": "https://www.thgingenuity.com"
  },
  "TN Express Web": {
    "cats": [
      1
    ],
    "cookies": {
      "TNEW": ""
    },
    "description": "Tessitura is an enterprise application to manage activities in ticketing, fundraising, customer relationship management, and marketing.",
    "icon": "tessitura.svg",
    "implies": "Tessitura",
    "website": "https://www.tessituranetwork.com"
  },
  "TNS Payments": {
    "cats": [
      41
    ],
    "description": "TNS Payments, is designed to deliver payment transaction information to banks, merchants, processors and other payment institutions.",
    "icon": "tnsi.png",
    "scriptSrc": "secure\\.ap\\.tnspayments\\.com",
    "website": "https://tnsi.com/products/payments/"
  },
  "TRISOshop": {
    "cats": [
      6
    ],
    "description": "TRISOshop is an ecommerce platform.",
    "dom": "a[href*='www.trisoshop.pl'][target='_blank']",
    "icon": "TRISOshop.svg",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.trisoshop.pl"
  },
  "TRUENDO": {
    "cats": [
      67
    ],
    "description": "TRUENDO is a GDPR compliance software.",
    "icon": "TRUENDO.svg",
    "js": {
      "Truendo": "",
      "TruendoCookieControlCallback": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": [
      "cdn\\.priv\\.center/",
      "cdn\\.truendo\\.com/"
    ],
    "website": "https://truendo.com"
  },
  "TVSquared": {
    "cats": [
      36
    ],
    "description": "TVSquared is a cross-platform TV ad measurement, analytics and optimisation platform.",
    "dom": "link[href*='.tvsquared.com']",
    "icon": "TVSquared.png",
    "js": {
      "TV2Track": "",
      "_tvq": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.tvsquared.com"
  },
  "TWiki": {
    "cats": [
      8
    ],
    "cookies": {
      "TWIKISID": ""
    },
    "description": "TWiki is an open-source wiki and application platform.",
    "html": "<img [^>]*(?:title|alt)=\"This site is powered by the TWiki collaboration platform",
    "icon": "TWiki.png",
    "implies": "Perl",
    "scriptSrc": "(?:TWikiJavascripts|twikilib(?:\\.min)?\\.js)",
    "website": "http://twiki.org"
  },
  "TYPO3 CMS": {
    "cats": [
      1
    ],
    "description": "TYPO3 is a free and open-source Web content management system written in PHP.",
    "html": [
      "<link[^>]+ href=\"/?typo3(?:conf|temp)/",
      "<img[^>]+ src=\"/?typo3(?:conf|temp)/",
      "<!--\n\tThis website is powered by TYPO3"
    ],
    "icon": "TYPO3.svg",
    "implies": "PHP",
    "meta": {
      "generator": "TYPO3\\s+(?:CMS\\s+)?(?:[\\d.]+)?(?:\\s+CMS)?"
    },
    "oss": true,
    "scriptSrc": "^/?typo3(?:conf|temp)/",
    "url": "/typo3/",
    "website": "https://typo3.org/"
  },
  "Tabarnapp": {
    "cats": [
      100
    ],
    "description": "Tabarnapp is a platform for Shopify apps and themes.",
    "icon": "Tabarnapp.png",
    "js": {
      "tabarnapp_loaded_ad": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "requires": "Shopify",
    "saas": true,
    "scriptSrc": "cdn\\.tabarn\\.app/",
    "website": "https://tabarnapp.com"
  },
  "Tabby": {
    "cats": [
      41,
      91
    ],
    "description": "Tabby is a Buy now pay later solution from Middle East.",
    "icon": "Tabby.svg",
    "js": {
      "Tabby": "",
      "TabbyPromo": ""
    },
    "saas": true,
    "scriptSrc": "checkout\\.tabby\\.ai",
    "website": "https://tabby.ai/"
  },
  "TableBooker": {
    "cats": [
      93
    ],
    "description": "Tablebooker is an online reservation system for restaurants.",
    "dom": {
      "iframe": {
        "attributes": {
          "id": "tablebookerResFrame_"
        }
      }
    },
    "icon": "TableBooker.svg",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "reservations\\.tablebooker\\.\\w+/",
    "website": "https://www.tablebooker.com"
  },
  "TableCheck": {
    "cats": [
      93
    ],
    "description": "TableCheck is a restaurant table booking widget.",
    "dom": {
      "form[action*='tablecheck']": {
        "attributes": {
          "action": "\\.tablecheck\\.\\w+/"
        }
      }
    },
    "icon": "TableCheck.svg",
    "scriptSrc": "tc_widget\\.js",
    "website": "https://www.tablecheck.com"
  },
  "TablePress": {
    "cats": [
      87
    ],
    "description": "TablePress is a free and open source plugin for the WordPress publishing platform. It enables you to create and manage tables on your website, without any coding knowledge.",
    "dom": "link[href*='/wp-content/plugins/tablepress/']",
    "icon": "TablePress.png",
    "oss": true,
    "requires": "WordPress",
    "website": "https://tablepress.org"
  },
  "Taboola": {
    "cats": [
      36
    ],
    "description": "Taboola is a content discovery & native advertising platform for publishers and advertisers.",
    "dom": {
      "link[href*='.taboola.com']": {
        "attributes": {
          "href": ""
        }
      }
    },
    "icon": "Taboola.svg",
    "js": {
      "_taboola": "",
      "_taboolaNetworkMode": "",
      "taboola_view_id": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.taboola\\.com",
    "website": "https://www.taboola.com",
    "xhr": "\\.taboola\\.com"
  },
  "Tachyons": {
    "cats": [
      66
    ],
    "description": "Tachyons is a functional CSS framework.",
    "dom": {
      "link[href*='tachyons.min.css']": {
        "attributes": {
          "href": "(?:([\\d\\.]+)(?:/css)?/)?tachyons\\.min\\.css\\;version:\\1"
        }
      }
    },
    "icon": "default.svg",
    "js": {
      "webpackChunkgatsby_starter_blog_tachyons": ""
    },
    "oss": true,
    "website": "https://tachyons.io"
  },
  "TagPro": {
    "cats": [
      42
    ],
    "description": "TagPro is software that updates and allows you to manage tags within websites, identifying various types of variables to optimise loads for advertising.",
    "icon": "TagPro.png",
    "js": {
      "initAdproTags": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "tagpro\\.adpromedia\\.net/",
    "website": "https://tagpro.adpromedia.net"
  },
  "Tagboard": {
    "cats": [
      96
    ],
    "description": "Tagboard is a platform which allows users to aggregate data from major social networking websites and embed, repost and redisplay it on various media.",
    "dom": "iframe[src*='.tagboard.com/']",
    "icon": "Tagboard.svg",
    "pricing": [
      "high",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.tagboard\\.com/",
    "website": "https://tagboard.com"
  },
  "Taggbox": {
    "cats": [
      5
    ],
    "description": "Taggbox is an UGC platform to collect, curate, manage rights, and publish user-generated content marketing campaigns across multiple channels.",
    "icon": "Taggbox.svg",
    "js": {
      "taggboxAjaxurl": ""
    },
    "pricing": [
      "low",
      "recurring",
      "freemium"
    ],
    "saas": true,
    "scriptSrc": [
      "\\.taggbox\\.com",
      "taggbox\\.com/app/js/embed\\.min\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1"
    ],
    "url": "\\.taggbox\\.com",
    "website": "https://taggbox.com/"
  },
  "Taiga": {
    "cats": [
      13
    ],
    "icon": "Taiga.png",
    "implies": [
      "Django",
      "AngularJS"
    ],
    "js": {
      "taigaConfig": ""
    },
    "website": "http://taiga.io"
  },
  "Tail": {
    "cats": [
      97
    ],
    "description": "Tail is a customer data management platform.",
    "icon": "Tail.svg",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.tailtarget\\.com/",
    "website": "https://www.tail.digital"
  },
  "Tailwind CSS": {
    "cats": [
      66
    ],
    "css": "--tw-(?:rotate|translate|space-x|text-opacity|border-opacity)",
    "description": "Tailwind is a utility-first CSS framework.",
    "dom": {
      "link[rel='stylesheet'][href*='tailwind']": {
        "attributes": {
          "href": "tailwindcss[@|/](?:\\^)?([\\d.]+)(?:/[a-z]+)?/(?:tailwind|base|components|utilities)(?:\\.min)?\\.css\\;version:\\1"
        }
      }
    },
    "icon": "tailwindcss.svg",
    "website": "https://tailwindcss.com/"
  },
  "TakeDrop": {
    "cats": [
      6
    ],
    "description": "TakeDrop is an ecommerce platform.",
    "dom": "img[src*='main.takedropstorage.com']",
    "icon": "TakeDrop.png",
    "js": {
      "webpackJsonptakedrop-react": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://takedrop.pl"
  },
  "Talkable": {
    "cats": [
      74,
      84,
      94
    ],
    "description": "Talkable is a cloud-based referral marketing system that assists medium to large businesses with campaign creation and channel performance tracking.",
    "icon": "Talkable.svg",
    "js": {
      "talkable.config.version": "([\\d\\.]+)\\;version:\\1"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.talkable.com"
  },
  "Tamago": {
    "cats": [
      5
    ],
    "html": "<link [^>]*href=\"http://tamago\\.temonalab\\.com",
    "icon": "Tamago.png",
    "website": "http://tamago.temonalab.com"
  },
  "Tamara": {
    "cats": [
      41,
      91
    ],
    "description": "Tamara ia a BNPL (Buy now pay later) provider in Saudi Arabia.",
    "icon": "Tamara.svg",
    "js": {
      "TamaraProductWidget": ""
    },
    "saas": true,
    "scriptSrc": "cdn\\.tamara\\.co",
    "website": "https://tamara.co/"
  },
  "Tangled Network": {
    "cats": [
      88
    ],
    "description": "Tangled Network provides a managed services in website devleopment, web and database hosting and domain registration, with a focus on everything managed for small and medium sized businesses.",
    "dns": {
      "NS": "\\.tanglednetwork\\.com",
      "SOA": "\\.tanglednetwork\\.com"
    },
    "headers": {
      "X-Hosting-Provider": "Tangled Network"
    },
    "icon": "atws.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "website": "https://tanglednetwork.com"
  },
  "Tapad": {
    "cats": [
      36
    ],
    "description": "Tapad is a venture-funded startup company that develops and markets software and services for cross-device advertising and content delivery.",
    "dom": "link[href*='pixel.tapad.com'], img[src*='pixel.tapad.com']",
    "icon": "Tapad.svg",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.tapad.com"
  },
  "Tapcart": {
    "cats": [
      19
    ],
    "description": "Tapcart is a mobile commerce SaaS platform that integrates directly with Shopify.",
    "dom": "a[href*='tapcart.app'][target='_blank']",
    "icon": "Tapcart.svg",
    "js": {
      "tapcartwebBanner": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "requires": "Shopify",
    "saas": true,
    "scriptSrc": "cdn\\.tapcart\\.com/",
    "website": "https://tapcart.com"
  },
  "Target2Sell": {
    "cats": [
      76
    ],
    "description": "Target2Sell is a personalisation solution for ecommerce sites.",
    "icon": "Target2Sell.png",
    "scriptSrc": "static\\.target2sell\\.com",
    "website": "https://www.target2sell.com/"
  },
  "Tatari": {
    "cats": [
      36
    ],
    "description": "Tatari is a data and analytics company focused on buying and measuring ads across TV and streaming platforms",
    "icon": "Tatari.png",
    "js": {
      "tatari": ""
    },
    "website": "https://www.tatari.tv/"
  },
  "Tawk.to": {
    "cats": [
      52
    ],
    "cookies": {
      "TawkConnectionTime": ""
    },
    "description": "Tawk.to is a free messaging app to monitor and chat with the visitors to a website, mobile app.",
    "icon": "TawkTo.png",
    "pricing": [
      "freemium",
      "payg"
    ],
    "saas": true,
    "scriptSrc": "//embed\\.tawk\\.to",
    "website": "http://tawk.to"
  },
  "Teachable": {
    "cats": [
      21
    ],
    "cookies": {
      "_gat_teachableTracker": "\\d+"
    },
    "description": "Teachable is a learning management system or LMS platform.",
    "icon": "Teachable.png",
    "js": {
      "isTeachable": "\\;confidence:50",
      "teachableIcons": "\\;confidence:50",
      "trackTeachableGAEvent": ""
    },
    "meta": {
      "asset_host": "\\.teachablecdn\\.com"
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.teachablecdn\\.com",
    "website": "https://teachable.com"
  },
  "Teads": {
    "cats": [
      36
    ],
    "description": "Teads is a technology provider that sells ads on publisher websites.",
    "icon": "Teads.svg",
    "scriptSrc": "teads\\.tv",
    "website": "https://www.teads.com",
    "xhr": "\\.teads\\.tv"
  },
  "Tealium": {
    "cats": [
      42,
      97
    ],
    "description": "Tealium provides a sales enterprise tag management system and marketing software.",
    "icon": "Tealium.png",
    "js": {
      "TEALIUMENABLED": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": [
      "^(?:https?:)?//tags\\.tiqcdn\\.com/",
      "/tealium/utag\\.js$"
    ],
    "website": "http://tealium.com"
  },
  "Tealium AudienceStream": {
    "cats": [
      86
    ],
    "description": "Tealium AudienceStream is an omnichannel customer segmentation and real-time action engine.",
    "dom": "link[href*='.tealiumiq.com']",
    "icon": "Tealium.png",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.tealiumiq\\.com",
    "website": "https://tealium.com/products/audiencestream"
  },
  "Tealium Consent Management": {
    "cats": [
      67
    ],
    "description": "Tealium Consent Management adds consent and data privacy support.",
    "dom": "script#__tealiumGDPRecScript,div#__tealiumGDPRecModal",
    "icon": "Tealium.png",
    "website": "https://docs.tealium.com/platforms/getting-started/consent-management"
  },
  "TeamCity": {
    "cats": [
      44
    ],
    "description": "TeamCity is a build management and continuous integration server from JetBrains.",
    "html": "<span class=\"versionTag\"><span class=\"vWord\">Version</span> ([\\d\\.]+)\\;version:\\1",
    "icon": "TeamCity.svg",
    "implies": [
      "Apache Tomcat",
      "Java",
      "jQuery",
      "Moment.js",
      "Prototype",
      "React",
      "Underscore.js"
    ],
    "meta": {
      "application-name": "TeamCity"
    },
    "website": "https://www.jetbrains.com/teamcity/"
  },
  "Telescope": {
    "cats": [
      1
    ],
    "icon": "Telescope.png",
    "implies": [
      "Meteor",
      "React"
    ],
    "js": {
      "Telescope": ""
    },
    "website": "http://telescopeapp.org"
  },
  "Tencent Analytics (腾讯分析)": {
    "cats": [
      10
    ],
    "icon": "tajs.png",
    "scriptSrc": "tajs\\.qq\\.com/stats",
    "website": "https://ta.qq.com/"
  },
  "Tencent Cloud": {
    "cats": [
      31,
      62
    ],
    "description": "Tencent Cloud is China's leading public cloud service provider.",
    "icon": "Tencent Cloud.svg",
    "meta": {
      "copyright": "^.+Tencent\\sCloud\\.$"
    },
    "pricing": [
      "payg"
    ],
    "scriptSrc": "\\.tencent-cloud\\.(?:cn|com)/",
    "website": "https://intl.cloud.tencent.com"
  },
  "Tencent QQ": {
    "cats": [
      52
    ],
    "description": "Tencent QQ also known as QQ, is an instant messaging software service and web portal developed by the Chinese tech giant Tencent.",
    "dom": "a[href*='tencent://message/']",
    "icon": "Tencent QQ.svg",
    "website": "https://im.qq.com"
  },
  "Tencent Waterproof Wall": {
    "cats": [
      9,
      16
    ],
    "icon": "TencentWaterproofWall.png",
    "scriptSrc": [
      "/TCaptcha\\.js",
      "captcha\\.qq\\.com/.*"
    ],
    "website": "https://007.qq.com/"
  },
  "Tengine": {
    "cats": [
      22
    ],
    "description": "Tengine is a web server which is based on the Nginx HTTP server.",
    "headers": {
      "Server": "Tengine"
    },
    "icon": "Tengine.png",
    "website": "http://tengine.taobao.org"
  },
  "Termly": {
    "cats": [
      67
    ],
    "description": "Termly provides free website policy resources and web-based policy creation software.",
    "icon": "termly.svg",
    "scriptSrc": "app\\.termly\\.io/embed\\.min\\.js",
    "website": "https://termly.io/"
  },
  "TerriaJS": {
    "cats": [
      35
    ],
    "description": "TerriaJS is an open-source framework for web-based geospatial catalogue explorers.",
    "dom": "html[class*='terria']",
    "icon": "TerriaJS.png",
    "website": "https://terria.io/"
  },
  "Tessitura": {
    "cats": [
      53
    ],
    "html": "<!--[^>]+Tessitura Version: (\\d*\\.\\d*\\.\\d*)?\\;version:\\1",
    "icon": "tessitura.svg",
    "implies": [
      "Microsoft ASP.NET",
      "IIS",
      "Windows Server"
    ],
    "website": "https://www.tessituranetwork.com"
  },
  "TestFreaks": {
    "cats": [
      90
    ],
    "description": "TestFreaks is an impartial source that provides product and seller review content for ecommerce websites.",
    "icon": "TestFreaks.svg",
    "js": {
      "applyTestFreaks": "",
      "testFreaks": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.testfreaks\\.com/",
    "website": "https://www.testfreaks.com"
  },
  "Texthelp": {
    "cats": [
      68
    ],
    "description": "TextHelp is a literacy, accessibility and dyslexia software developer for people with reading and writing difficulties.",
    "icon": "Texthelp.svg",
    "scriptSrc": "browsealoud\\.com/.*/browsealoud\\.js",
    "website": "https://www.texthelp.com/en-gb/products/browsealoud/"
  },
  "Textpattern CMS": {
    "cats": [
      1
    ],
    "icon": "Textpattern CMS.png",
    "implies": [
      "PHP",
      "MySQL"
    ],
    "meta": {
      "generator": "Textpattern"
    },
    "website": "http://textpattern.com"
  },
  "The Arena Group": {
    "cats": [
      36
    ],
    "description": "The Arena Group is a media coalition of professional content destinations. It operates on a shared digital publishing, advertising, and distribution platform, providing a major media-scale alternative to news and information distributed on social platforms.",
    "icon": "The Arena Group.svg",
    "meta": {
      "generator": "^Tempest\\s-\\smaven\\.io$"
    },
    "saas": true,
    "website": "https://thearenagroup.net"
  },
  "The Events Calendar": {
    "cats": [
      87
    ],
    "description": "The Events Calendar is a free event management plugin for WordPress.",
    "dom": "link[href*='/wp-content/plugins/the-events-calendar/']",
    "icon": "The Events Calendar.png",
    "js": {
      "TribeCalendar": "",
      "tribe_l10n_datatables": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/the-events-calendar(?:-pro)?/",
    "website": "https://theeventscalendar.com"
  },
  "The Hotels Network": {
    "cats": [
      10,
      76
    ],
    "description": "The Hotels Network provides a SaaS software that enhances hotelier websites with predictive marketing personalisation and user behavior analytics.",
    "headers": {
      "content-security-policy": "\\.thehotelsnetwork\\.com",
      "content-security-policy-report-only": "\\.thehotelsnetwork\\.com"
    },
    "icon": "The Hotels Network.svg",
    "js": {
      "thn.data.version": "([\\d\\.]+)\\;version:\\1"
    },
    "pricing": [
      "freemium",
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.thehotelsnetwork\\.com/",
    "website": "https://thehotelsnetwork.com"
  },
  "The Theme Foundry Make": {
    "cats": [
      80
    ],
    "description": "Make is a free, open-source builder WordPress theme by The Theme Foundry.",
    "icon": "The Theme Foundry.svg",
    "js": {
      "MakeDynamicStylesheet": "\\;confidence:50",
      "MakeFrontEnd": "\\;confidence:50"
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/make(?:-child)?/.+frontend\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://thethemefoundry.com/wordpress-themes/make"
  },
  "The.com": {
    "cats": [
      18,
      51
    ],
    "description": "The.com is a low-code website building platform with community-created components that you can share and own.",
    "icon": "The.com.svg",
    "implies": [
      "React",
      "Amazon S3"
    ],
    "pricing": [
      "payg",
      "mid",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "the-dotcom-public-cdn\\.s3\\.amazonaws\\.com/",
    "website": "https://www.the.com"
  },
  "Thefork": {
    "cats": [
      93
    ],
    "description": "Thefork is a restaurant booking, managing system.",
    "dom": {
      "iframe[data-src*='lafourchette']": {
        "attributes": {
          "data-src": "module\\.lafourchette.\\w+"
        }
      },
      "iframe[src*='lafourchette']": {
        "attributes": {
          "src": "module\\.lafourchette.\\w+"
        }
      }
    },
    "icon": "Thefork.svg",
    "pricing": [
      "mid",
      "freemium",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.thefork.com"
  },
  "Thelia": {
    "cats": [
      1,
      6
    ],
    "html": "<(?:link|style|script)[^>]+/assets/frontOffice/",
    "icon": "Thelia.png",
    "implies": [
      "PHP",
      "Symfony"
    ],
    "website": "http://thelia.net"
  },
  "Theme Freesia Edge": {
    "cats": [
      80
    ],
    "description": "Edge is a responsive blogger WordPress theme by Theme Freesia.",
    "icon": "Theme Freesia.png",
    "js": {
      "edge_slider_value": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/edge(?:-plus)?/",
    "website": "https://themefreesia.com/themes/edge"
  },
  "Theme Freesia Photograph": {
    "cats": [
      80
    ],
    "description": "Photograph is a WordPress theme exclusively built for photographer, blogger, portfolio, photography agency or photo studio websites.",
    "icon": "Theme Freesia.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/photograph(?:-plus)?/",
    "website": "https://themefreesia.com/themes/Photograph"
  },
  "Theme Freesia ShoppingCart": {
    "cats": [
      80
    ],
    "description": "ShoppingCart is a WordPress theme especially build for store and ecommerce by Theme Freesia.",
    "icon": "Theme Freesia.png",
    "js": {
      "shoppingcart_slider_value": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/shoppingcart(?:-plus)?/",
    "website": "https://themefreesia.com/themes/shoppingcart"
  },
  "Theme Horse Attitude": {
    "cats": [
      80
    ],
    "description": "Attitude is a simple, clean and responsive retina ready WordPress theme by Theme Horse.",
    "dom": "link[href*='/wp-content/themes/attitude-pro/']",
    "icon": "Theme Horse.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/attitude(?:-pro)?/",
    "website": "https://www.themehorse.com/themes/attitude"
  },
  "Theme Horse NewsCard": {
    "cats": [
      80
    ],
    "description": "NewsCard is a multi-purpose magazine/news WordPress theme by Theme Horse.",
    "dom": "link[href*='/wp-content/themes/newscard-pro/']",
    "icon": "Theme Horse.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/newscard(?:-pro)?/",
    "website": "https://www.themehorse.com/themes/newscard"
  },
  "Theme Vision Agama": {
    "cats": [
      80
    ],
    "description": "Agama is a free multi-purpose WordPress theme by Theme Vision.",
    "icon": "Theme Vision.png",
    "js": {
      "agama": "",
      "agama_pro": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/agama(?:-pro)?/.+functions\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://theme-vision.com/agama"
  },
  "Theme4Press Evolve": {
    "cats": [
      80
    ],
    "description": "Theme4Press Evolve is an multipurpose and minimal WordPress theme.",
    "icon": "Theme4Press.png",
    "js": {
      "evolve_js_local_vars": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/evolve(?:-plus)?/",
    "website": "https://theme4press.com/evolve-multipurpose-wordpress-theme"
  },
  "ThemeGrill Accelerate": {
    "cats": [
      80
    ],
    "description": "ThemeGrill Accelerate is free minimal WordPress theme.",
    "dom": "link#accelerate_style-css",
    "icon": "ThemeGrill.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/accelerate(?:-pro)?/",
    "website": "https://themegrill.com/themes/accelerate"
  },
  "ThemeGrill Cenote": {
    "cats": [
      80
    ],
    "description": "ThemeGrill Cenote is a creative blogging WordPress theme, fully compatible with WooCommerce and popular page builders.",
    "dom": "link[href*='/wp-content/themes/cenote/'], link[href*='/wp-content/themes/cenote-pro/']",
    "icon": "ThemeGrill.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/cenote(?:-pro)?/",
    "website": "https://themegrill.com/themes/cenote"
  },
  "ThemeGrill ColorMag": {
    "cats": [
      80
    ],
    "description": "ThemeGrill ColorMag is most popular magazine-newspaper style WordPress theme.",
    "dom": "link#colormag_style-css",
    "icon": "ThemeGrill.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/colormag(?:-pro)?/",
    "website": "https://themegrill.com/themes/colormag"
  },
  "ThemeGrill Flash": {
    "cats": [
      80
    ],
    "description": "ThemeGrill Flash is one of the most flexible multipurpose WordPress themes.",
    "dom": "link[href='/wp-content/themes/flash']",
    "icon": "ThemeGrill.png",
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/flash(?:-pro)?/",
    "website": "https://themegrill.com/themes/flash"
  },
  "ThemeGrill Radiate": {
    "cats": [
      80
    ],
    "description": "ThemeGrill Radiate is a simple and minimal WordPress theme focused on blogging.",
    "dom": "link#radiate-style-css",
    "icon": "ThemeGrill.png",
    "js": {
      "radiateScriptParam": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/radiate(?:-pro)?/",
    "website": "https://themegrill.com/themes/radiate"
  },
  "ThemeGrill Spacious": {
    "cats": [
      80
    ],
    "description": "ThemeGrill Spacious is beautiful small to medium business responsive WordPress theme.",
    "dom": "link#spacious_style-css",
    "icon": "ThemeGrill.png",
    "js": {
      "spacious_slider_value": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/spacious(?:-pro)?/",
    "website": "https://themegrill.com/themes/spacious"
  },
  "ThemeGrill eStore": {
    "cats": [
      80
    ],
    "description": "ThemeGrill eStore is one of the most popular WooCommerce integrated WordPress themes.",
    "icon": "ThemeGrill.png",
    "implies": "Cart Functionality",
    "meta": {
      "generator": "eStore v\\.([\\d\\.]+)\\;version:\\1"
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/e(?:s|S)tore(?:-pro)?/",
    "website": "https://themegrill.com/themes/estore"
  },
  "ThemeIsle Menu Icons": {
    "cats": [
      87
    ],
    "description": "ThemeIsle Menu Icons plugin gives you the ability to add icons to your menu items, similar to the look of the latest dashboard menu.",
    "dom": "link[href*='/wp-content/plugins/menu-icons/']",
    "icon": "ThemeIsle.png",
    "requires": "WordPress",
    "website": "https://wordpress.org/plugins/menu-icons"
  },
  "ThemeZee Donovan": {
    "cats": [
      80
    ],
    "description": "ThemeZee Donovan is a flexible, yet easy-to-use blogging WordPress theme.",
    "icon": "ThemeZee.png",
    "js": {
      "donovanScreenReaderText": "",
      "donovan_menu_title": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/donovan/",
    "website": "https://themezee.com/themes/donovan"
  },
  "ThemeZee Poseidon": {
    "cats": [
      80
    ],
    "description": "ThemeZee Poseidon is an elegant designed WordPress theme featuring a splendid fullscreen image slideshow.",
    "icon": "ThemeZee.png",
    "js": {
      "poseidonScreenReaderText": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/poseidon/",
    "website": "https://themezee.com/themes/poseidon"
  },
  "ThemeZee Wellington": {
    "cats": [
      80
    ],
    "description": "Wellington is a clean and simple magazine WordPress theme by ThemeZee.",
    "icon": "ThemeZee.png",
    "js": {
      "wellingtonScreenReaderText": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/wellington/",
    "website": "https://themezee.com/themes/wellington"
  },
  "Themeansar Newsberg": {
    "cats": [
      80
    ],
    "description": "Themeansar Newsberg is a fast, clean, modern-looking, responsive news magazine WordPress theme.",
    "dom": "link#newsberg-style-css",
    "excludes": "Themeansar Newsup",
    "icon": "Themeansar.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "website": "https://themeansar.com/free-themes/newsberg"
  },
  "Themeansar Newsup": {
    "cats": [
      80
    ],
    "description": "Themeansar Newsup is a fast, clean, modern-looking responsive news magazine WordPress theme.",
    "icon": "Themeansar.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/newsup(?:-pro)?/",
    "website": "https://themeansar.com/free-themes/newsup"
  },
  "Themebeez Cream Magazine": {
    "cats": [
      80
    ],
    "description": "Cream Magazine is a news and magazine WordPress theme by Themebeez.",
    "icon": "Themebeez.png",
    "js": {
      "cream_magazine_script_obj": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "website": "https://themebeez.com/themes/cream-magazine"
  },
  "Themebeez Orchid Store": {
    "cats": [
      80
    ],
    "description": "Orchid Store is a clean, flexible, stylish and dynamic ecommerce WordPress theme by Themebeez.",
    "icon": "Themebeez.png",
    "js": {
      "orchid_store_obj": ""
    },
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/orchid-store(?:-child)?/.+bundle\\.min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://themebeez.com/themes/orchid-store"
  },
  "Themegraphy Graphy": {
    "cats": [
      80
    ],
    "description": "Themegraphy Graphy is now compatible with WordPress 5.0 and Gutenberg blog-oriented WordPress theme.",
    "icon": "Themegraphy.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/graphy(?:-pro)?/",
    "website": "https://themegraphy.com/wordpress-themes/graphy"
  },
  "Themes4Wp Bulk": {
    "cats": [
      80
    ],
    "description": "Themes4Wp Bulk is a modern and responsive multipurpose WordPress theme.",
    "icon": "Themes4Wp.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/bulk(?:-pro)?/.+customscript\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://themes4wp.com/theme/bulk"
  },
  "ThemezHut Bam": {
    "cats": [
      80
    ],
    "description": "ThemezHut Bam is a great flexible WordPress theme for blogging sites.",
    "icon": "ThemezHut.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/bam(?:-pro)?/",
    "website": "https://themezhut.com/themes/bam"
  },
  "ThemezHut HitMag": {
    "cats": [
      80
    ],
    "description": "ThemezHut HitMag is a stylish and powerful WordPress theme crafted for magazines, newspapers or personal blogs.",
    "icon": "ThemezHut.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/hitmag(?:-pro)?/",
    "website": "https://themezhut.com/themes/hitmag"
  },
  "Themonic Iconic One": {
    "cats": [
      80
    ],
    "description": "Themonic Iconic One is a premium quality WordPress theme with pixel perfect typography and responsiveness and is built for speed.",
    "icon": "Themonic.png",
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/iconic-one(?:-[\\w]+)?/",
    "website": "https://themonic.com/iconic-one"
  },
  "Thesis": {
    "cats": [
      10
    ],
    "description": "Thesis is a conversion rate optimisation company.",
    "icon": "Thesis.svg",
    "js": {
      "thix.history": "\\;confidence:50",
      "thix.t": "\\;confidence:50"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "thix\\.ttsep\\.com/",
    "website": "https://www.thesistesting.com"
  },
  "Thimatic": {
    "cats": [
      90,
      100
    ],
    "description": "Thimatic is a Shopify app for product reviews.",
    "icon": "Thimatic.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "thimatic-apps\\.com/product_review/.*?v=([\\d.]+)\\;version:\\1",
    "website": "https://thimatic-apps.com/"
  },
  "Think Up Themes Consulting": {
    "cats": [
      80
    ],
    "description": "Think Up Themes Consulting is a multipurpose WordPress theme that is available for free download and also offers a pro version.",
    "dom": "link#consulting-style-css",
    "icon": "Think Up Themes.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/consulting(?:-pro)?/",
    "website": "https://www.thinkupthemes.com/themes/consulting"
  },
  "Think Up Themes Minamaze": {
    "cats": [
      80
    ],
    "description": "Think Up Themes Minamaze is a multipurpose WordPress theme that is available for free download and also offers a pro version.",
    "dom": "link#minamaze-style-css",
    "icon": "Think Up Themes.png",
    "pricing": [
      "freemium",
      "onetime"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/minamaze(?:-pro)?/",
    "website": "https://www.thinkupthemes.com/themes/minamaze"
  },
  "ThinkPHP": {
    "cats": [
      18
    ],
    "headers": {
      "X-Powered-By": "ThinkPHP"
    },
    "icon": "ThinkPHP.png",
    "implies": "PHP",
    "website": "http://www.thinkphp.cn"
  },
  "Thinkific": {
    "cats": [
      21
    ],
    "cookies": {
      "_thinkific_session": ""
    },
    "description": "Thinkific is a software platform that enables entrepreneurs to create, market, sell, and deliver their own online courses.",
    "icon": "Thinkific.svg",
    "js": {
      "Thinkific": "",
      "ThinkificAnalytics": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cdn(?:-themes)?\\.thinkific\\.com",
    "website": "https://www.thinkific.com"
  },
  "ThreatMetrix": {
    "cats": [
      16,
      83
    ],
    "description": "LexisNexis ThreatMetrix is an enterprise solution for online risk and fraud protection ('digital identity intelligence and digital authentication').",
    "icon": "threatmetrix.png",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.online-metrix\\.net",
    "website": "https://risk.lexisnexis.com/products/threatmetrix"
  },
  "Threekit": {
    "cats": [
      105,
      95
    ],
    "description": "Threekit is a visual customer experience solution that enables brands to create, manage and scale photorealistic images and 3D product visuals, all from a single design file.",
    "icon": "Threekit.svg",
    "js": {
      "threekit.configuratorForm": "",
      "threekitAR": "",
      "threekitPlayer": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.threekit.com"
  },
  "ThriveCart": {
    "cats": [
      6
    ],
    "description": "ThriveCart is a sales cart solution that lets you create checkout pages for your online products and services.",
    "icon": "ThriveCart.svg",
    "js": {
      "ThriveCart": ""
    },
    "pricing": [
      "mid",
      "onetime"
    ],
    "saas": true,
    "scriptSrc": "thrivecart\\.js",
    "website": "https://thrivecart.com"
  },
  "Ticimax": {
    "cats": [
      6
    ],
    "icon": "Ticimax.png",
    "scriptSrc": [
      "cdn\\.ticimax\\.com/"
    ],
    "website": "https://www.ticimax.com"
  },
  "Tictail": {
    "cats": [
      6
    ],
    "html": "<link[^>]*tictail\\.com",
    "icon": "tictail.png",
    "website": "https://tictail.com"
  },
  "TiddlyWiki": {
    "cats": [
      1,
      2,
      4,
      8
    ],
    "description": "TiddlyWiki is an open-source notebook for capturing, organising and sharing complex information.",
    "html": "<[^>]*type=[^>]text\\/vnd\\.tiddlywiki",
    "icon": "TiddlyWiki.png",
    "js": {
      "tiddler": ""
    },
    "meta": {
      "application-name": "^TiddlyWiki$",
      "copyright": "^TiddlyWiki created by Jeremy Ruston",
      "generator": "^TiddlyWiki$",
      "tiddlywiki-version": "^(.+)$\\;version:\\1"
    },
    "website": "http://tiddlywiki.com"
  },
  "Tidio": {
    "cats": [
      52
    ],
    "description": "Tidio is a customer communication product. It provides multi-channel support so users can communicate with customers on the go. Live chat, messenger, or email are all supported.",
    "icon": "Tidio.svg",
    "js": {
      "tidioChatApi": ""
    },
    "pricing": [
      "low",
      "freemium",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "code\\.tidio\\.co",
    "website": "https://www.tidio.com"
  },
  "Tiendanube": {
    "cats": [
      6
    ],
    "description": "Tiendanube is an ecommerce platform.",
    "icon": "Tiendanube.svg",
    "js": {
      "LS.store.url": "^.+\\.mitiendanube\\.com$"
    },
    "pricing": [
      "high",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.tiendanube.com"
  },
  "TikTok Pixel": {
    "cats": [
      10
    ],
    "dom": {
      "script[data-hid='tiktok']": {
        "attributes": {
          "data-hid": ""
        }
      }
    },
    "icon": "TikTok.svg",
    "js": {
      "TiktokAnalyticsObject": ""
    },
    "website": "https://ads.tiktok.com",
    "xhr": "analytics\\.tiktok\\.com"
  },
  "Tiki Wiki CMS Groupware": {
    "cats": [
      1,
      2,
      8,
      11,
      13
    ],
    "description": "Tiki Wiki is a free and open-source wiki-based content management system and online office suite written primarily in PHP.",
    "icon": "Tiki Wiki CMS Groupware.png",
    "meta": {
      "generator": "^Tiki"
    },
    "scriptSrc": "(?:/|_)tiki",
    "website": "http://tiki.org"
  },
  "Tilda": {
    "cats": [
      1
    ],
    "description": "Tilda is a web design tool.",
    "html": "<link[^>]* href=[^>]+tilda(?:cdn|\\.ws|-blocks)",
    "icon": "Tilda.svg",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "tilda(?:cdn|\\.ws|-blocks)",
    "website": "https://tilda.cc"
  },
  "Timeplot": {
    "cats": [
      25
    ],
    "icon": "Timeplot.png",
    "js": {
      "Timeplot": ""
    },
    "scriptSrc": "timeplot.*\\.js",
    "website": "http://www.simile-widgets.org/timeplot/"
  },
  "Timify": {
    "cats": [
      72
    ],
    "description": "Timify is an online scheduling and resource management software for small, medium and large businesses.",
    "icon": "Timify.svg",
    "js": {
      "TimifyWidget": ""
    },
    "pricing": [
      "low",
      "freemium",
      "recurring"
    ],
    "scriptSrc": "\\.timify\\.com/",
    "website": "https://www.timify.com"
  },
  "TinyMCE": {
    "cats": [
      24
    ],
    "cpe": "cpe:/a:tiny:tinymce",
    "description": "TinyMCE is an online rich-text editor released as open-source software. TinyMCE is designed to integrate with JavaScript libraries, Vue.js, and AngularJS as well as content management systems such as Joomla!, and WordPress.",
    "icon": "TinyMCE.png",
    "js": {
      "tinyMCE.majorVersion": "([\\d.]+)\\;version:\\1"
    },
    "scriptSrc": "/tiny_?mce(?:\\.min)?\\.js",
    "website": "http://tinymce.com"
  },
  "Tippy.js": {
    "cats": [
      59
    ],
    "description": "Tippy.js is the complete tooltip, popover, dropdown, and menu solution for the web, powered by Popper.",
    "dom": "style[data-tippy-stylesheet]",
    "icon": "Tippy.js.svg",
    "js": {
      "tippy.defaultProps": ""
    },
    "oss": true,
    "scriptSrc": "/tippy\\.js(?:@|/)?([\\d\\.]+)?\\;version:\\1",
    "website": "https://atomiks.github.io/tippyjs"
  },
  "Tipsa": {
    "cats": [
      99
    ],
    "description": "TIPSA is a parcel delivery company in Spain, Portugal and Andorra.",
    "icon": "Tipsa.svg",
    "requiresCategory": 6,
    "text": [
      "\\bTipsa\\b"
    ],
    "website": "https://www.tip-sa.com"
  },
  "Tiqets": {
    "cats": [
      5,
      71
    ],
    "description": "Tiqets provides a complete overview of a city - museums, attractions, zoos, canal cruises, concerts. Publishers joined to the Tiqets affiliate program can receive 6% commission during our 30-day cookie window from completed total bookings resulting from featuring links to Tiqets products and content across their brand: blog/website, social media, newsletters, etc.",
    "dom": "a[href*='.tiqets.com/'][target='_blank'], iframe[src*='.tiqets.com/']",
    "icon": "Tiqets.svg",
    "js": {
      "__TIQETS_LOADER_REINIT": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "website": "https://www.tiqets.com/affiliate"
  },
  "Titan": {
    "cats": [
      36
    ],
    "icon": "Titan.png",
    "js": {
      "titan": "",
      "titanEnabled": ""
    },
    "website": "http://titan360.com"
  },
  "TomTom Maps": {
    "cats": [
      35
    ],
    "description": "TomTom Maps is a web mapping service.",
    "icon": "TomTom.svg",
    "js": {
      "tomtom.Map": ""
    },
    "saas": true,
    "scriptSrc": "api\\.tomtom\\.com",
    "website": "https://www.tomtom.com",
    "xhr": "api\\.tomtom\\.com"
  },
  "TomatoCart": {
    "cats": [
      6
    ],
    "icon": "TomatoCart.png",
    "js": {
      "AjaxShoppingCart": ""
    },
    "meta": {
      "generator": "TomatoCart"
    },
    "website": "http://tomatocart.com"
  },
  "TornadoServer": {
    "cats": [
      22
    ],
    "headers": {
      "Server": "TornadoServer(?:/([\\d.]+))?\\;version:\\1"
    },
    "icon": "TornadoServer.png",
    "website": "http://tornadoweb.org"
  },
  "TotalCode": {
    "cats": [
      6
    ],
    "headers": {
      "X-Powered-By": "^TotalCode$"
    },
    "icon": "TotalCode.png",
    "website": "http://www.totalcode.com"
  },
  "Totango": {
    "cats": [
      97
    ],
    "description": "Totango is a customer success platform that helps recurring revenue businesses simplify the complexities of customer success by connecting the dots of customer data, actively monitoring customer health changes, and driving proactive engagements.",
    "icon": "Totango.svg",
    "js": {
      "totango": "",
      "totangoLoader": ""
    },
    "pricing": [
      "freemium",
      "poa"
    ],
    "saas": true,
    "scriptSrc": [
      "\\.totango\\.com/totango([\\d\\.]+)\\.js\\;version:\\1",
      "\\.amazonaws\\.com/totango-cdn/totango\\d\\.js"
    ],
    "website": "https://www.totango.com"
  },
  "Touch2Success": {
    "cats": [
      6
    ],
    "description": "Touch2Success is a fully featured restaurant POS software designed to serve startups, enterprises.",
    "icon": "Touch2Success.svg",
    "meta": {
      "content": "^Touch2Success$"
    },
    "website": "https://www.touch2success.com"
  },
  "TownNews": {
    "cats": [
      1
    ],
    "description": "TownNews is a CMS platform built for local media organizations.",
    "headers": {
      "x-tncms": ""
    },
    "icon": "townnews.png",
    "js": {
      "TNCMS": "",
      "TNStats_Tracker": "",
      "TNTracker": ""
    },
    "website": "https://townnews.com/"
  },
  "Trac": {
    "cats": [
      13
    ],
    "html": [
      "<a id=\"tracpowered",
      "Powered by <a href=\"[^\"]*\"><strong>Trac(?:[ /]([\\d.]+))?\\;version:\\1"
    ],
    "icon": "Trac.png",
    "implies": "Python",
    "website": "http://trac.edgewall.org"
  },
  "TrackJs": {
    "cats": [
      10
    ],
    "description": "TrackJS is an error monitoring agent for production web sites and applications.",
    "icon": "TrackJs.svg",
    "js": {
      "TrackJs": "",
      "trackJs": ""
    },
    "scriptSrc": "cdn\\.trackjs\\.com",
    "website": "http://trackjs.com"
  },
  "Trackify X": {
    "cats": [
      100,
      10
    ],
    "description": "Trackify X is a pixel engine that helps merchants backup their pixel data and manage multiple pixels.",
    "icon": "Trackify X.png",
    "implies": "Shopify",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "trackifyx\\.redretarget\\.com/",
    "website": "https://trackifyapp.com"
  },
  "Tradedoubler": {
    "cats": [
      71
    ],
    "description": "Tradedoubler is a global affiliate marketing network.",
    "dom": {
      "a[href*='clk.tradedoubler.com/click']": {
        "text": ""
      },
      "img[src*='impes.tradedoubler.com/imp']": {
        "text": ""
      }
    },
    "icon": "Tradedoubler.svg",
    "scriptSrc": "swrap\\.tradedoubler\\.com",
    "website": "https://www.tradedoubler.com/"
  },
  "TrafficStars": {
    "cats": [
      36
    ],
    "description": "TrafficStars is a self-served ad network and ad exchange that operates mainly in adult-related verticals.",
    "dom": "img[src*='tsyndicate.com/'], a[href*='trafficstars.com']",
    "icon": "TrafficStars.png",
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.tsyndicate\\.com/",
    "website": "https://trafficstars.com"
  },
  "Transcend": {
    "cats": [
      67
    ],
    "description": "Transcend is data privacy management compliance platform.",
    "icon": "Transcend.svg",
    "js": {
      "transcend": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "http://www.transcend.io"
  },
  "Transcy": {
    "cats": [
      89
    ],
    "description": "Transcy allows you to translate your whole store content into target languages to reach different nation shoppers.",
    "icon": "Transcy.png",
    "js": {
      "_transcy": "",
      "transcy_apiURI": "",
      "transcy_shopifyLocales": ""
    },
    "pricing": [
      "freemium",
      "low",
      "recurring"
    ],
    "requires": "Shopify",
    "saas": true,
    "website": "https://transcy.io"
  },
  "Transifex": {
    "cats": [
      12
    ],
    "icon": "transifex.png",
    "js": {
      "Transifex.live.lib_version": "(.+)\\;version:\\1"
    },
    "website": "https://www.transifex.com"
  },
  "Translate WordPress": {
    "cats": [
      87,
      89
    ],
    "description": "Translate WordPress is a website translator plugin which can translate any website to any language automatically. Translate WordPress plugin is now a part of GTranslate family.",
    "icon": "GTranslate.svg",
    "requires": "WordPress",
    "scriptSrc": "/wp-content/plugins/google-language-translator/.+scripts\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1",
    "website": "https://gtranslate.io"
  },
  "Translucide": {
    "cats": [
      1
    ],
    "icon": "translucide.svg",
    "implies": [
      "PHP",
      "jQuery"
    ],
    "scriptSrc": "lucide\\.init(?:\\.min)?\\.js",
    "website": "http://www.translucide.net"
  },
  "Transmart": {
    "cats": [
      99
    ],
    "description": "Transmart is a shipping company in Turkey.",
    "requiresCategory": 6,
    "text": [
      "\\bTransmart\\b"
    ],
    "website": "https://transmartshipping.com"
  },
  "Tray": {
    "cats": [
      6
    ],
    "description": "Tray is an all-in-one ecommerce platform from Brazil.",
    "icon": "tray.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "tcdn\\.com\\.br",
    "website": "https://www.tray.com.br"
  },
  "Trbo": {
    "cats": [
      74,
      76
    ],
    "cookies": {
      "trbo_session": "^(?:[\\d]+)$",
      "trbo_usr": "^(?:[\\d\\w]+)$"
    },
    "description": "Trbo is a personalisation, recommendations, A/B testing platform from Germany.",
    "icon": "Trbo.svg",
    "js": {
      "_trbo": "",
      "_trbo_start": "",
      "_trboq": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "\\.trbo\\.com",
    "website": "https://www.trbo.com"
  },
  "Treasure Data": {
    "cats": [
      97
    ],
    "description": "Treasure Data is the only enterprise customer data platform.",
    "dom": "link[href*='.treasuredata.com']",
    "icon": "Treasure Data.svg",
    "js": {
      "Treasure.version": "(.+)\\;version:\\1"
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": "cdn\\.treasuredata\\.com/",
    "website": "https://www.treasuredata.com"
  },
  "Trengo": {
    "cats": [
      52
    ],
    "description": "Trengo is an omnichannel communication platform that unifies all messaging channels into one single view.",
    "icon": "Trengo.svg",
    "js": {
      "Trengo.eventBus": ""
    },
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.widget\\.trengo\\.eu/",
    "website": "https://trengo.com"
  },
  "Tripadviser.Widget": {
    "cats": [
      5
    ],
    "description": "Tripadvisor embed reviews widget.",
    "icon": "Tripadviser.Widget.svg",
    "scriptSrc": "tripadvisor\\.[\\w]+/WidgetEmbed",
    "website": "https://www.tripadvisor.com/Widgets"
  },
  "TripleLift": {
    "cats": [
      36
    ],
    "description": "TripleLift is an advertising technology company providing native programmatic to buyers and sellers.",
    "dom": {
      "iframe[src*='.3lift.com']": {
        "attributes": {
          "src": ""
        }
      }
    },
    "icon": "TripleLift.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "website": "https://triplelift.com",
    "xhr": "\\.3lift\\.com"
  },
  "Tritac Katana Commerce": {
    "cats": [
      6
    ],
    "description": "Katana Commerce is Tritac's B2B and B2C ecommerce platform.",
    "icon": "Tritac.svg",
    "meta": {
      "powered-by": "^Katana\\sCommerce$"
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.tritac.com/nl/producten/katana-commerce/"
  },
  "Trix": {
    "cats": [
      24
    ],
    "description": "Trix is an open-source project from Basecamp, the creators of Ruby on Rails.",
    "icon": "trix.png",
    "js": {
      "Trix.VERSION": "^(.+)$\\;version:\\1"
    },
    "website": "https://trix-editor.org"
  },
  "Trove Recommerce": {
    "cats": [
      6
    ],
    "description": "Trove (formerly Yerdle) builds white-label technology and end-to-end operations for ecommerce platforms.",
    "dom": "img[src*='res.cloudinary.com/yerdle']",
    "headers": {
      "x-trove-app-name": "",
      "x-trove-country-code": "",
      "x-trove-order-uuid": "",
      "x-yerdle-app-name": ""
    },
    "icon": "trove.png",
    "saas": true,
    "website": "https://trove.co",
    "xhr": "reware-production\\.yerdlesite\\.com"
  },
  "TruValidate": {
    "cats": [
      16,
      83
    ],
    "description": "TransUnion TruValidate (previously ReputationShield/IDVision from iovation) is an online risk and fraud detection platform.",
    "icon": "TruValidate.svg",
    "pricing": [
      "poa"
    ],
    "saas": true,
    "scriptSrc": [
      "mpsnare\\.iesnare\\.com",
      "ci-mpsnare\\.iovation\\.com"
    ],
    "website": "https://www.transunion.com/solution/truvalidate"
  },
  "True Fit": {
    "cats": [
      76
    ],
    "description": "True Fit is a data-driven personalisation platform for footwear and apparel retailers.",
    "icon": "True Fit.png",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cdn\\.truefitcorp\\.com/(?:.+/([\\d\\.]+))?\\;version:\\1",
    "website": "https://www.truefit.com"
  },
  "TrueCommerce": {
    "cats": [
      6
    ],
    "description": "TrueCommerce is an eCommerce platform.",
    "icon": "Truecommerce.svg",
    "scriptSrc": "cdn\\.nexternal\\.com/",
    "website": "https://www.truecommerce.com"
  },
  "Trumba": {
    "cats": [
      72
    ],
    "description": "Trumba offers web-hosted event calendar software for publishing online, interactive, calendars of events.",
    "dom": "a[href*='www.trumba.com/calendars/']",
    "icon": "Trumba.png",
    "js": {
      "$Trumba": "",
      "$Trumba.version": "([\\d\\.]+)\\;version:\\1",
      "Trumba": ""
    },
    "pricing": [
      "mid",
      "recurring"
    ],
    "saas": true,
    "website": "https://www.trumba.com"
  },
  "Trunkrs": {
    "cats": [
      99
    ],
    "description": "Trunkrs is a Dutch parcel delivery service.",
    "icon": "Trunkrs.svg",
    "requiresCategory": 6,
    "text": [
      "\\bTrunkrs\\b"
    ],
    "website": "https://trunkrs.nl"
  },
  "TrustArc": {
    "cats": [
      67
    ],
    "description": "TrustArc provides software and services to help corporations update their privacy management processes so they comply with government laws and best practices.",
    "icon": "TrustArc.svg",
    "scriptSrc": "consent\\.trustarc\\.com",
    "website": "http://trustarc.com"
  },
  "TrustYou": {
    "cats": [
      5
    ],
    "description": "TrustYou is guest feedback and hotel reputation software company located in Germany.",
    "dom": {
      "iframe[src*='api.trustyou.com']": {
        "attributes": {
          "src": ""
        }
      }
    },
    "icon": "TrustYou.svg",
    "saas": true,
    "website": "https://www.trustyou.com"
  },
  "Trusted Shops": {
    "cats": [
      90
    ],
    "description": "Trusted Shops is a company that acts as a 3'rd party representing the common interests of both consumers and retailers.",
    "icon": "Trusted Shops.svg",
    "pricing": [
      "low",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "widgets\\.trustedshops\\.com/",
    "website": "https://www.trustedshops.co.uk"
  },
  "Trustindex Google Reviews": {
    "cats": [
      87,
      90
    ],
    "description": "Google Reviews s a premium plugin that can help you to embed reviews on your site by Trustindex.",
    "dom": "link[href*='/wp-content/plugins/widget-google-reviews/']",
    "icon": "Trustindex.svg",
    "pricing": [
      "onetime"
    ],
    "requires": "WordPress",
    "saas": true,
    "scriptSrc": "/wp-content/plugins/widget-google-reviews/",
    "website": "https://www.trustindex.io"
  },
  "Trustpilot": {
    "cats": [
      90
    ],
    "description": "Trustpilot is a Danish consumer review website which provide embed stand-alone applications in your website to show your most recent reviews, TrustScore, and star ratings.",
    "icon": "Trustpilot.svg",
    "js": {
      "Trustpilot": ""
    },
    "pricing": [
      "mid",
      "freemium",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "\\.trustpilot\\.com",
    "website": "https://business.trustpilot.com"
  },
  "Trustspot": {
    "cats": [
      90
    ],
    "description": "TrustSpot provides a solution to capture ratings & reviews, video testimonials, photos, social experiences, and product Q&A.",
    "icon": "Trustspot.png",
    "js": {
      "trustspot_key": ""
    },
    "saas": true,
    "scriptSrc": "trustspot\\.io",
    "website": "https://trustspot.io/"
  },
  "Tumblr": {
    "cats": [
      11
    ],
    "description": "Tumblr is a microblogging and social networking website. The service allows users to post multimedia and other content to a short-form blog.",
    "headers": {
      "X-Tumblr-User": ""
    },
    "html": "<iframe src=\"[^>]+tumblr\\.com",
    "icon": "Tumblr.png",
    "url": "^https?://(?:www\\.)?[^/]+\\.tumblr\\.com/",
    "website": "http://www.tumblr.com"
  },
  "Turbo": {
    "cats": [
      92
    ],
    "description": "Turbo is a JavaScript framework for building fast web applications.",
    "icon": "Turbo.svg",
    "js": {
      "Turbo": ""
    },
    "oss": true,
    "website": "https://turbo.hotwired.dev/"
  },
  "Turbolinks": {
    "cats": [
      92
    ],
    "description": "Turbolinks is a Rails feature, available as a gem and enabled by default in new Rails apps. It is intended to speed up navigating between pages of your application.",
    "js": {
      "Turbolinks": ""
    },
    "oss": true,
    "scriptSrc": "turolinks\\.js",
    "website": "https://github.com/turbolinks/turbolinks"
  },
  "TurfJS": {
    "cats": [
      59
    ],
    "description": "Turf is a modular geospatial engine written in JavaScript.",
    "icon": "TurfJS.svg",
    "js": {
      "turf.feature": "",
      "turf.point": "",
      "turf.random": ""
    },
    "scriptSrc": "(turf@[\\d.]+)?/?turf\\.min\\.js",
    "website": "https://turfjs.org/"
  },
  "TurnTo": {
    "cats": [
      90
    ],
    "description": "TurnTo Networks Inc provides customer-generated content solutions platform for large retailers and the global brands that sell through them.",
    "icon": "TurnTo.svg",
    "js": {
      "TurnTo": "",
      "turnToConfig": ""
    },
    "pricing": [
      "poa"
    ],
    "saas": true,
    "website": "https://www.turntonetworks.com"
  },
  "Twenty Eleven": {
    "cats": [
      80
    ],
    "description": "Twenty Eleven is the default WordPress theme for 2011.",
    "dom": "link[href*='/wp-content/themes/twentyeleven/']",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "website": "https://wordpress.org/themes/twentyeleven"
  },
  "Twenty Fifteen": {
    "cats": [
      80
    ],
    "description": "Twenty Fifteen is the default WordPress theme for 2015.",
    "dom": "link#twentyfifteen-style-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentyfifteen/",
    "website": "https://wordpress.org/themes/twentyfifteen"
  },
  "Twenty Fourteen": {
    "cats": [
      80
    ],
    "description": "Twenty Fourteen is the default WordPress theme for 2014.",
    "dom": "link#twentyfourteen-style-css, style#twentyfourteen-lato-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentyfourteen/",
    "website": "https://wordpress.org/themes/twentyfourteen"
  },
  "Twenty Nineteen": {
    "cats": [
      80
    ],
    "description": "Twenty Nineteen is the default WordPress theme for 2019.",
    "dom": "link#twentynineteen-style-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentynineteen/",
    "website": "https://wordpress.org/themes/twentynineteen"
  },
  "Twenty Seventeen": {
    "cats": [
      80
    ],
    "description": "Twenty Seventeen is the default WordPress theme for 2017.",
    "dom": "link#twentyseventeen-style-css",
    "icon": "WordPress.svg",
    "js": {
      "twentyseventeenScreenReaderText": ""
    },
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentyseventeen/",
    "website": "https://wordpress.org/themes/twentyseventeen"
  },
  "Twenty Sixteen": {
    "cats": [
      80
    ],
    "description": "Twenty Sixteen is the default WordPress theme for 2016.",
    "dom": "link#twentysixteen-style-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentysixteen/",
    "website": "https://wordpress.org/themes/twentysixteen"
  },
  "Twenty Ten": {
    "cats": [
      80
    ],
    "description": "Twenty Ten is the default WordPress theme for 2010.",
    "dom": "link[href*='/wp-content/themes/twentyten/']",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentyten/",
    "website": "https://wordpress.org/themes/twentyten"
  },
  "Twenty Thirteen": {
    "cats": [
      80
    ],
    "description": "Twenty Thirteen is the default WordPress theme for 2013.",
    "dom": "link#twentythirteen-style-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentythirteen/",
    "website": "https://wordpress.org/themes/twentythirteen"
  },
  "Twenty Twelve": {
    "cats": [
      80
    ],
    "description": "Twenty Twelve is the default WordPress theme for 2012.",
    "dom": "link#twentytwelve-style-css",
    "icon": "WordPress.svg",
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentytwelve/",
    "website": "https://wordpress.org/themes/twentytwelve"
  },
  "Twenty Twenty": {
    "cats": [
      80
    ],
    "description": "Twenty Twenty is the default WordPress theme for 2020.",
    "dom": "link#twentytwenty-style-css",
    "icon": "WordPress.svg",
    "js": {
      "twentytwenty": ""
    },
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentytwenty/",
    "website": "https://wordpress.org/themes/twentytwenty"
  },
  "Twenty Twenty-One": {
    "cats": [
      80
    ],
    "description": "Twenty Twenty-One is the default WordPress theme for 2021.",
    "dom": "link#twenty-twenty-one-style-css",
    "icon": "WordPress.svg",
    "js": {
      "twentytwentyoneCollapseMenuOnClickOutside": "",
      "twentytwentyoneResponsiveEmbeds": ""
    },
    "pricing": [
      "freemium"
    ],
    "requires": "WordPress",
    "scriptSrc": "/wp-content/themes/twentytwentyone/",
    "website": "https://wordpress.org/themes/twentytwentyone"
  },
  "TwicPics": {
    "cats": [
      31,
      59
    ],
    "description": "TwicPics offers on-demand responsive image generation.",
    "dom": {
      ".twic": {
        "attributes": {
          "data-src": ""
        }
      },
      "[data-twic-src]": {
        "attributes": {
          "data-twic-src": ""
        }
      },
      "data-twic-background": {
        "attributes": {
          "data-twic-background": ""
        }
      }
    },
    "headers": {
      "server": "^TwicPics/\\d+\\.\\d+\\.\\d+$"
    },
    "icon": "TwicPics.svg",
    "pricing": [
      "freemium",
      "recurring",
      "payg"
    ],
    "saas": true,
    "scriptSrc": ".+\\.twic\\.pics",
    "website": "https://www.twicpics.com"
  },
  "Twik": {
    "cats": [
      76
    ],
    "description": "Twik provides a automated, no-configuration business intelligence & personalization automation engine.",
    "icon": "Twik.svg",
    "js": {
      "TWIK_ID": ""
    },
    "pricing": [
      "low",
      "freemium",
      "recurring"
    ],
    "saas": true,
    "scriptSrc": "cdn\\.twik\\.io",
    "website": "https://www.twik.io/"
  },
  "Twilight CMS": {
    "cats": [
      1
    ],
    "headers": {
      "X-Powered-CMS": "Twilight CMS"
    },
    "icon": "Twilight CMS.png",
    "website": "http://www.twilightcms.com"
  },
  "TwistPHP": {
    "cats": [
      18
    ],
    "headers": {
      "X-Powered-By": "TwistPHP"
    },
    "icon": "TwistPHP.png",
    "implies": "PHP",
    "website": "http://twistphp.com"
  },
  "TwistedWeb": {
    "cats": [
      22
    ],
    "headers": {
      "Server": "TwistedWeb(?:/([\\d.]+))?\\;version:\\1"
    },
    "icon": "TwistedWeb.png",
    "oss": true,
    "website": "http://twistedmatrix.com/trac/wiki/TwistedWeb"
  },
  "Twitch Player": {
    "cats": [
      14
    ],
    "description": "Twitch is an American video live streaming service that focuses on video game live streaming, including broadcasts of esports competitions.",
    "dom": "iframe[src*='player\\.twitch\\.tv']",
    "icon": "Twitch.svg",
    "js": {
      "Twitch.Player": ""
    },
    "website": "https://dev.twitch.tv/docs/embed/video-and-clips/"
  },
  "Twitter": {
    "cats": [
      5
    ],
    "description": "Twitter is a 'microblogging' system that allows you to send and receive short posts called tweets.",
    "icon": "Twitter.svg",
    "scriptSrc": "//platform\\.twitter\\.com/widgets\\.js",
    "website": "http://twitter.com"
  },
  "Twitter Ads": {
    "cats": [
      36
    ],
    "description": "Twitter Ads is an advertising platform for Twitter 'microblogging' system.",
    "icon": "Twitter.svg",
    "js": {
      "twttr": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "static\\.ads-twitter\\.com/uwt\\.js",
    "website": "https://ads.twitter.com"
  },
  "Twitter Analytics": {
    "cats": [
      10
    ],
    "description": "Twitter Analytics is a built-in data-tracking platform that shows you insights specific to your Twitter account and activity.",
    "icon": "Twitter.svg",
    "pricing": [
      "freemium"
    ],
    "saas": true,
    "scriptSrc": "analytics\\.twitter\\.com",
    "website": "https://analytics.twitter.com"
  },
  "Twitter Emoji (Twemoji)": {
    "cats": [
      17
    ],
    "description": "Twitter Emoji is a set of open-source emoticons and emojis for Twitter, TweetDeck, and also for Android and iOS versions of the application.",
    "js": {
      "twemoji": ""
    },
    "scriptSrc": "twemoji(?:\\.min)?\\.js",
    "website": "https://twitter.github.io/twemoji/"
  },
  "Twitter Flight": {
    "cats": [
      12
    ],
    "icon": "Twitter Flight.png",
    "implies": "jQuery",
    "js": {
      "flight": ""
    },
    "website": "https://flightjs.github.io/"
  },
  "Twitter typeahead.js": {
    "cats": [
      59
    ],
    "icon": "Twitter typeahead.js.png",
    "implies": "jQuery",
    "js": {
      "typeahead": ""
    },
    "scriptSrc": "(?:typeahead|bloodhound)\\.(?:jquery|bundle)?(?:\\.min)?\\.js",
    "website": "https://twitter.github.io/typeahead.js"
  },
  "TypeDoc": {
    "cats": [
      4
    ],
    "description": "TypeDoc is an API documentation generator for TypeScript projects.",
    "icon": "TypeDoc.png",
    "implies": "TypeScript",
    "oss": true,
    "website": "https://typedoc.org"
  },
  "TypePad": {
    "cats": [
      11
    ],
    "description": "Typepad is a blog hosting service.",
    "icon": "TypePad.png",
    "meta": {
      "generator": "typepad"
    },
    "url": "typepad\\.com",
    "website": "http://www.typepad.com"
  },
  "TypeScript": {
    "cats": [
      27
    ],
    "description": "TypeScript is an open-source language which builds on JavaScript  by adding static type definitions.",
    "icon": "TypeScript.svg",
    "oss": true,
    "website": "https://www.typescriptlang.org"
  },
  "Typecho": {
    "cats": [
      11
    ],
    "description": "Typecho is a PHP Blogging Platform.",
    "icon": "typecho.svg",
    "implies": "PHP",
    "js": {
      "TypechoComment": ""
    },
    "meta": {
      "generator": "Typecho( [\\d.]+)?\\;version:\\1"
    },
    "url": "/admin/login\\.php?referer=http%3A%2F%2F",
    "website": "http://typecho.org/"
  },
  "Typekit": {
    "cats": [
      17
    ],
    "description": "Typekit is an online service which offers a subscription library of fonts.",
    "html": "<link [^>]*href=\"[^\"]+use\\.typekit\\.(?:net|com)",
    "icon": "Typekit.png",
    "js": {
      "Typekit.config.js": "^(.+)$\\;version:\\1"
    },
    "pricing": [
      "low",
      "freemium",
      "recurring"
    ],
    "scriptSrc": "use\\.typekit\\.com",
    "website": "http://typekit.com"
  },
  "Typof": {
    "cats": [
      6
    ],
    "cookies": {
      "typof_session": "\\;confidence:50"
    },
    "description": "Typof is an ecommerce platform for artisans that allows to create a premium website and sell items directly to the consumer.",
    "icon": "Typof.png",
    "pricing": [
      "freemium",
      "recurring",
      "low"
    ],
    "saas": true,
    "scriptSrc": "portal/js/typof\\.js\\;confidence:50",
    "website": "https://typof.com"
  },
  "theTradeDesk": {
    "cats": [
      36
    ],
    "description": "theTradeDesk is an technology company that markets a software platform used by digital ad buyers to purchase data-driven digital advertising campaigns across various ad formats and devices.",
    "dom": {
      "iframe[src*='insight.adsrvr.org']": {
        "attributes": {
          "src": ""
        }
      }
    },
    "icon": "theTradeDesk.svg",
    "js": {
      "TTDUniversalPixelApi": "",
      "ttd_dom_ready": ""
    },
    "pricing": [
      "payg"
    ],
    "saas": true,
    "scriptSrc": "\\.adsrvr\\.org/",
    "website": "https://www.thetradedesk.com",
    "xhr": "adsvr\\.org"
  },
  "three.js": {
    "cats": [
      25
    ],
    "description": "Three.js is a cross-browser JavaScript library and application programming interface used to create and display animated 3D computer graphics in a web browser using WebGL.",
    "icon": "three.js.png",
    "js": {
      "THREE.REVISION": "^(.+)$\\;version:\\1",
      "__THREE__": "^(.+)$\\;version:\\1"
    },
    "oss": true,
    "scriptSrc": "three(?:\\.min)?\\.js",
    "website": "https://threejs.org"
  },
  "thttpd": {
    "cats": [
      22
    ],
    "cpe": "cpe:/a:acme:thttpd",
    "headers": {
      "Server": "\\bthttpd(?:/([\\d.]+))?\\;version:\\1"
    },
    "icon": "thttpd.png",
    "website": "https://acme.com/software/thttpd"
  },
  "toastr": {
    "cats": [
      12
    ],
    "description": "toastr is a Javascript library for non-blocking notifications. The goal is to create a simple core library that can be customized and extended.",
    "icon": "toastr.png",
    "js": {
      "toastr.version": "(.*)\\;version:\\1"
    },
    "oss": true,
    "website": "https://github.com/CodeSeven/toastr"
  },
  "total.js": {
    "cats": [
      18
    ],
    "headers": {
      "X-Powered-By": "^total\\.js"
    },
    "icon": "total.js.png",
    "implies": "Node.js",
    "website": "https://totaljs.com"
  }
}