-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathextensions.json
More file actions
2075 lines (2075 loc) · 95.5 KB
/
extensions.json
File metadata and controls
2075 lines (2075 loc) · 95.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/.github/schemas/gallery.schema.json",
"version": "1.0",
"generatedAt": "2026-05-10T13:34:20Z",
"extensionCount": 61,
"extensions": [
{
"id": "8lwxpg.process-killer",
"title": "Process Killer",
"shortDescription": "Killing processes with process name or port number",
"description": "View process details like process name, command line, memory, path, window title. With ability to terminate the process",
"author": {
"name": "8LWXpg",
"url": "https://github.com/8LWXpg"
},
"homepage": "https://github.com/8LWXpg/CmdPal-ProcessKiller",
"tags": [
"process",
"program",
"system-utilities",
"taskkill",
"task-manager"
],
"categories": [
"developer-tools",
"utilities-and-tools",
"productivity"
],
"installSources": [
{
"type": "msstore",
"id": "9PNHK9LDHMHS"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/8lwxpg/process-killer/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/8lwxpg/process-killer/screenshots/01-process.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/8lwxpg/process-killer/screenshots/02-port.png"
],
"addedAt": "2026-05-10"
},
{
"id": "advaith.currency-converter",
"title": "Currency Converter",
"shortDescription": "Convert real and crypto currencies.",
"description": "Need to convert currencies on the fly without breaking your workflow? Currency Converter for Command Palette is a fast, lightweight extension for the Windows Command Palette that lets you seamlessly translate between global fiat money and cryptocurrencies. Instead of opening a browser tab, simply pull up your command palette, type in your amount, and get instant, accurate results. Whether you are using natural language, currency symbols, or even doing quick inline math before a conversion, this tool handles it effortlessly.",
"author": {
"name": "Advaith A J",
"url": "https://github.com/advaith3600"
},
"homepage": "https://github.com/Advaith3600/Command-Palette-Currency-Converter",
"tags": [
"currency",
"converter",
"crypto",
"currency-converter"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "winget",
"id": "advaith.CurrencyConverterCommandPalette"
},
{
"type": "msstore",
"id": "9PC2T04G3V9C"
},
{
"type": "url",
"uri": "https://github.com/Advaith3600/Command-Palette-Currency-Converter/releases"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/screenshots/01-screenshot-demo.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/screenshots/02-screenshot.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/screenshots/03-screenshot.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/screenshots/04-screenshot.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/advaith/currency-converter/screenshots/05-screenshot.png"
],
"addedAt": "2026-04-15"
},
{
"id": "atkaksoy501.portpilot",
"title": "PortPilot",
"shortDescription": "Find and free dev server ports directly from PowerToys Command Palette.",
"description": "PortPilot helps developers quickly find and free busy dev server ports from inside PowerToys Command Palette. It scans TCP listening ports in the common 3000-10000 development range, shows the owning process name and PID, supports fuzzy search, and asks for confirmation before terminating a process. You can also pin PortPilot to the Command Palette dock for one-click access.",
"author": {
"name": "Atakan Aksoy",
"url": "https://github.com/atkaksoy501"
},
"homepage": "https://github.com/atkaksoy501/PortPilot",
"tags": [
"ports",
"processes",
"powertoys",
"windows",
"developer"
],
"categories": [
"developer-tools",
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "url",
"uri": "https://github.com/atkaksoy501/PortPilot/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/atkaksoy501/portpilot/icon.png",
"addedAt": "2026-04-27"
},
{
"id": "baldbeardedbuilder.weather",
"title": "Weather",
"shortDescription": "Current conditions, hourly forecasts, and multi-day forecasts right from Command Palette.",
"description": "Bring your weather conditions and forecasts to your fingertips with the Weather extension for Command Palette.\n\nSearch locations or save your favorite to see current, hourly, or the 7-day weather forecast. View temperature, feels like, humidity, wind speed, and conditions for any location worldwide.\n\nWeather for Command Palette also integrates with Command Palette's dock feature, showing your current conditions and providing a quick overview window with a 3-hour and 3-day forecast.\n\nConfigurable units for temperature (Fahrenheit/Celsius), wind speed (mph/km/h), and adjustable update intervals. Weather data provided by Open-Meteo — free and no API key required.",
"author": {
"name": "Michael Jolley",
"url": "https://github.com/michaeljolley"
},
"homepage": "https://github.com/michaeljolley/WeatherExtension",
"tags": [
"weather",
"forecast",
"temperature",
"dock"
],
"categories": [
"news-and-weather",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9N01D6BS9V98"
},
{
"type": "winget",
"id": "BaldBeardedBuilder.WeatherforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/baldbeardedbuilder/weather/icon.png",
"addedAt": "2026-04-12"
},
{
"id": "bdbai.base64-converter",
"title": "Base64 Converter",
"shortDescription": "A Command Palette extension for quick conversion to/from Base64 encoded text.",
"description": "A lightweight extension for Microsoft Command Palette that lets you quickly encode and decode text using Base64—right as you type. Simply enter any string into the search box and instantly see its Base64 or URL-safe Base64 equivalent, making it perfect for developers, testers, and anyone working with encoded data.\nDesigned for speed and simplicity, this extension integrates seamlessly into your workflow, eliminating the need for external tools or manual conversions.",
"author": {
"name": "bdbai",
"url": "https://github.com/bdbai"
},
"homepage": "https://github.com/bdbai/Base64ConverterExtension",
"tags": [
"base64",
"jwt"
],
"categories": [
"utilities-and-tools",
"developer-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9nj54mwrrn30"
},
{
"type": "url",
"uri": "https://github.com/bdbai/Base64ConverterExtension/releases/tag/v0.0.1.0"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/bdbai/base64-converter/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/bdbai/base64-converter/screenshots/01-encode-view.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/bdbai/base64-converter/screenshots/02-decode-view.png"
],
"addedAt": "2026-05-10"
},
{
"id": "caolib.project-opener",
"title": "Project Opener",
"shortDescription": "A project opener.",
"description": "An extension that can search for and open local Visual Studio Code (VS Code) installations and derivative editors (Trae, Cursor, etc.).",
"author": {
"name": "caolib",
"url": "https://github.com/caolib"
},
"homepage": "https://github.com/caolib/ProjectOpenerExtension",
"tags": [
"project",
"vscode",
"editor"
],
"categories": [
"developer-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9NG967HCNH55"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/caolib/project-opener/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/caolib/project-opener/screenshots/01-main-view.png"
],
"addedAt": "2026-04-27"
},
{
"id": "costafotiadis.adb-extension",
"title": "ADB Extension",
"shortDescription": "Control connected Android devices directly from Command Palette",
"description": "ADB Extension brings Android Debug Bridge commands to your Command Palette. Browse installed apps, install APKs, uninstall, launch, force-stop, clear data, grant/revoke permissions, launch deep links, take screenshots, toggle developer options, airplane mode, Wi-Fi, mobile data, and mark favourite apps for quick access.\n\nBuilt this because I kept alt-tabbing to a terminal for the same five ADB commands. Hope others find it useful too.\n\nRequires ADB installed and available in your PATH.",
"author": {
"name": "Costa Fotiadis",
"url": "https://github.com/CostaFot"
},
"homepage": "https://github.com/CostaFot/AdbExtension",
"tags": [
"adb",
"android",
"developer-tools",
"adb-commands"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9NHDX4XWCNGS"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/costafotiadis/adb-extension/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/costafotiadis/adb-extension/screenshots/01-app-command-view.jpg",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/costafotiadis/adb-extension/screenshots/02-autocomplete-view.jpg",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/costafotiadis/adb-extension/screenshots/03-app-manager-view.jpg",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/costafotiadis/adb-extension/screenshots/04-settings.jpg"
],
"addedAt": "2026-04-21"
},
{
"id": "davidegiacometti.edge-favorites",
"title": "Edge Favorites",
"shortDescription": "Open Microsoft Edge favorites in Command Palette.",
"description": "Quickly open Microsoft Edge favorites, folders, and workspaces from the Command Palette while staying in your current workflow, using a smooth keyboard-first experience.\n\nSupports all release channels.",
"author": {
"name": "davidegiacometti",
"url": "https://github.com/davidegiacometti"
},
"homepage": "https://github.com/davidegiacometti/CmdPal-Extensions",
"tags": [
"microsoft",
"edge",
"browser",
"favorites",
"bookmarks"
],
"categories": [
"productivity"
],
"installSources": [
{
"type": "winget",
"id": "davidegiacometti.EdgeFavoritesForCmdPal"
},
{
"type": "url",
"uri": "https://github.com/davidegiacometti/CmdPal-Extensions/releases"
},
{
"type": "msstore",
"id": "9NQWBR1DJ2PQ"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/edge-favorites/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/edge-favorites/screenshots/01-dark.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/edge-favorites/screenshots/02-settings.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/edge-favorites/screenshots/03-light.png"
],
"addedAt": "2026-04-15"
},
{
"id": "davidegiacometti.visual-studio",
"title": "Visual Studio",
"shortDescription": "Open Visual Studio recents from Command Palette.",
"description": "Quickly open Visual Studio recents from the Command Palette while staying in your current workflow, using a smooth keyboard-first experience.\n\nSupports Visual Studio 2019, 2022, and 2026 across all editions and release channels.",
"author": {
"name": "davidegiacometti",
"url": "https://github.com/davidegiacometti"
},
"homepage": "https://github.com/davidegiacometti/CmdPal-Extensions",
"tags": [
"microsoft",
"visual-studio"
],
"categories": [
"developer-tools",
"productivity"
],
"installSources": [
{
"type": "winget",
"id": "davidegiacometti.VisualStudioForCmdPal"
},
{
"type": "url",
"uri": "https://github.com/davidegiacometti/CmdPal-Extensions/releases"
},
{
"type": "msstore",
"id": "9P0P3JXP7M3G"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/visual-studio/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/visual-studio/screenshots/01-dark.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/visual-studio/screenshots/02-settings.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/davidegiacometti/visual-studio/screenshots/03-light.png"
],
"addedAt": "2026-04-15"
},
{
"id": "daydreamer-riri.qrcode",
"title": "QR Code",
"shortDescription": "Generate QR codes quickly and easily with support for dynamic placeholders like IP addresses, date, and time.",
"description": "QR Code is a PowerToys Command Palette extension for generating QR codes quickly and easily.\n\nYou can use placeholders in your input and they will be expanded in the generated QR code and details view:\n- {ip_local}: local LAN IPv4 address\n- {ip_public}: public IPv4 address (best-effort)\n- {ip}: alias for {ip_local}\n- {date}: current date (locale format)\n- {time}: current time (locale format)\n\nThe extension keeps a history of your generated QR codes for quick access and reuse. Install via winget or the Microsoft Store, then open Command Palette to start generating QR codes.",
"author": {
"name": "Riri",
"url": "https://github.com/Daydreamer-riri"
},
"homepage": "https://github.com/Daydreamer-riri/QRCode-CmdPal",
"tags": [
"qrcode",
"qr",
"generator",
"utilities",
"productivity"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "winget",
"id": "Riri.QRCodeforCmdPal"
},
{
"type": "msstore",
"id": "9PPGQ6TB8DMT"
},
{
"type": "url",
"uri": "https://github.com/Daydreamer-riri/QRCode-CmdPal/releases"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/qrcode/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/qrcode/screenshots/01-main-view.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/qrcode/screenshots/02-detail-view.png"
],
"addedAt": "2026-04-27"
},
{
"id": "daydreamer-riri.web-search-shortcut",
"title": "Web Search Shortcut",
"shortDescription": "Quickly select a specific search engine to perform searches via keyword prefixes.",
"description": "Web Search Shortcut is a PowerToys Command Palette extension for quickly selecting a specific search engine to perform searches via keyword prefixes.\n\nYou can configure multiple search engines, each with a custom keyword, URL template, icon, and search suggestion provider. Supports Google, Bing, DuckDuckGo, YouTube, Wikipedia, npm, CanIUse, and more.\n\nInstall via winget or the Microsoft Store, then open Command Palette to start searching with your configured shortcuts.",
"author": {
"name": "Riri",
"url": "https://github.com/Daydreamer-riri"
},
"homepage": "https://github.com/Daydreamer-riri/CmdPal-WebSearchShortcut",
"tags": [
"search",
"web",
"browser",
"shortcut",
"keyword"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "winget",
"id": "Riri.WebSearchShortcut"
},
{
"type": "msstore",
"id": "9p9hchbgbrf4"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/web-search-shortcut/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/web-search-shortcut/screenshots/01-cmdpal-add.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/web-search-shortcut/screenshots/02-cmdpal-add-suggestions.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/web-search-shortcut/screenshots/03-search-1.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/daydreamer-riri/web-search-shortcut/screenshots/04-search-2.png"
],
"addedAt": "2026-04-27"
},
{
"id": "determ1ne.scripter",
"title": "Scripter",
"shortDescription": "Scripter integrates with the Windows Command Palette to let you conveniently run scripts from Command Palette.",
"description": "Scripter integrates with the Windows Command Palette to let you conveniently run scripts from Command Palette. This is an open source project, you can find the documents and source code at https://github.com/determ1ne/CmdPalScripter .",
"author": {
"name": "Azuk",
"url": "https://github.com/determ1ne"
},
"homepage": "https://github.com/determ1ne/CmdPalScripter",
"tags": [
"scripting",
"developer"
],
"categories": [
"developer-tools",
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9PN3KMW042J3"
},
{
"type": "url",
"uri": "https://github.com/determ1ne/CmdPalScripter/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/determ1ne/scripter/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/determ1ne/scripter/screenshots/01-main-view.png"
],
"addedAt": "2026-04-27"
},
{
"id": "dlnilsson.cmdpal-yubico-oath-otp",
"title": "YubiKey OATH OTP",
"shortDescription": "Display TOTP codes from OATH accounts stored on your YubiKey in PowerToys Command Palette.",
"description": "YubiKey OATH OTP integrates YubiKey hardware-based TOTP codes directly into the PowerToys Command Palette.\n\nFeatures:\n- Lists all OATH/TOTP accounts stored on your connected YubiKey\n- Generates current one-time passwords via the ykman CLI\n- Click any account to instantly copy the code to clipboard\n- Smart 10-second caching for minimal latency\n- Configurable ykman path and device ID for multi-key setups\n\nRequirements:\n- YubiKey hardware with OATH credentials configured\n- YubiKey Manager CLI (ykman) installed and in PATH (or path configured in settings)",
"author": {
"name": "Daniel Nilsson",
"url": "https://github.com/dlnilsson"
},
"homepage": "https://github.com/dlnilsson/cmdpal.yubicoOauthOTP",
"tags": [
"yubikey",
"otp",
"totp",
"2fa",
"security"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "url",
"uri": "https://github.com/dlnilsson/cmdpal.yubicoOauthOTP/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/dlnilsson/cmdpal-yubico-oath-otp/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/dlnilsson/cmdpal-yubico-oath-otp/screenshots/01-list.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/dlnilsson/cmdpal-yubico-oath-otp/screenshots/02-settings.png"
],
"addedAt": "2026-04-28"
},
{
"id": "fefedu973.universal-search-suggestions",
"title": "Universal Search Suggestions",
"shortDescription": "Browser-like web search suggestions, URL detection, local browser results, favicons, and rich details in Command Palette.",
"description": "Universal Search Suggestions brings browser-like search behavior to PowerToys Command Palette. It shows immediate direct search and URL actions, autocomplete from Google, Bing, DuckDuckGo, Brave and optional providers such as Yahoo, Ecosia, Qwant, Swisscows and Google Toolbar XML, Google rich suggestions, Google Omnibox answers such as calculator and short factual answers when exposed by the suggest endpoint, cached site favicons, and optional local browser bookmarks/history from Chrome, Edge, Brave or Firefox. Suggestions can still open through the user's preferred search engine or custom URL template. Optional beta detail enrichment can append Markdown from free web answer sources or a user-configured AI endpoint without blocking suggestion loading.",
"author": {
"name": "Fefe_du_973",
"url": "https://github.com/Fefedu973"
},
"homepage": "https://github.com/Fefedu973/UniversalSearchSuggestions",
"tags": [
"search",
"browser",
"autocomplete",
"google",
"powertoys"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9nccznpqb9s6"
},
{
"type": "url",
"uri": "https://github.com/Fefedu973/UniversalSearchSuggestions/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/screenshots/01-overview.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/screenshots/02-ai-answer-panel.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/screenshots/03-local-bookmarks.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/screenshots/04-instant-answers.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/fefedu973/universal-search-suggestions/screenshots/05-url-detection.png"
],
"addedAt": "2026-05-10"
},
{
"id": "goucey.everythingextension",
"title": "EverythingExt",
"shortDescription": "Everything seach extension.",
"description": "An extension that enables Everything search in the Command Palette. Everything is a fast file search tool that helps users efficiently look up files and folders on your computer.",
"author": {
"name": "Goucey",
"url": "https://github.com/goucey"
},
"homepage": "https://github.com/goucey/EverythingExtension",
"tags": [
"everything",
"search",
"files"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9PND4PGFP6KM"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/screenshots/01-main-view.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/screenshots/02-search-1.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/screenshots/03-search-2.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/screenshots/04-search-4.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/goucey/everythingextension/screenshots/05-search-5.png"
],
"addedAt": "2026-05-10"
},
{
"id": "hoobio.bitwarden",
"title": "Bitwarden",
"shortDescription": "Instant search and copy of credentials, TOTP codes, and notes from your Bitwarden vault, directly from the Command Palette.",
"description": "A free, open-source extension that brings your Bitwarden vault into the Command Palette for instant, keyboard-driven access. Built as an alternative to 1Password Quick Access.\n\nFeatures:\n\n- Vault search with fallback suggestions across all item types\n- Secure clipboard: passwords excluded from clipboard history and auto-cleared on a configurable timer\n- Smart sorting: recently used, favorites, and context-matched items float to the top\n- TOTP display with live codes and countdown timers (including Steam Guard)\n- Search filters using prefix syntax like is:fav, folder:Work, has:totp, url:github\n- Watchtower tags: visual warnings for weak, old, or reused passwords\n- Context awareness: detects open apps and browser tabs to surface relevant items\n- Custom field copy, SSH quick-connect, and manual vault sync\n\nRequires the Bitwarden CLI (bw) on your PATH.",
"author": {
"name": "Hoobi",
"url": "https://github.com/hoobio"
},
"homepage": "https://github.com/hoobio/command-palette-bitwarden",
"tags": [
"bitwarden",
"password",
"vault",
"totp",
"credentials"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9P5KS8T80MV3"
},
{
"type": "url",
"uri": "https://github.com/hoobio/command-palette-bitwarden/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/hoobio/bitwarden/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/hoobio/bitwarden/screenshots/01-preview.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/hoobio/bitwarden/screenshots/02-login.png"
],
"addedAt": "2026-04-27"
},
{
"id": "huoyan1231.tempcleanerforcmdpal",
"title": "Temp file cleaner",
"shortDescription": "Clean Temp files on one click",
"description": "Use cmdpal to clean %temp% folder in one click",
"author": {
"name": "huoyan1231",
"url": "https://github.com/huoyan1231"
},
"homepage": "https://github.com/huoyan1231/CmdpalTempCleaner",
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9NF4KWM349XX"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/huoyan1231/tempcleanerforcmdpal/icon.png",
"addedAt": "2026-04-21"
},
{
"id": "illustar0.sourceswitch",
"title": "SourceSwitch",
"shortDescription": "Switch Monitor Inputs (HDMI/DP, etc.) via Command Palette.",
"description": "Switch Monitor Inputs (HDMI/DP, etc.) via Command Palette.",
"author": {
"name": "Illustar0",
"url": "https://github.com/Illustar0"
},
"homepage": "https://github.com/Illustar0/SourceSwitch.Extension.Palette",
"categories": [
"utilities-and-tools",
"productivity"
],
"installSources": [
{
"type": "msstore",
"id": "9MWGJ4GFR31B"
},
{
"type": "url",
"uri": "https://github.com/Illustar0/SourceSwitch.Extension.Palette/releases/latest"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/illustar0/sourceswitch/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/illustar0/sourceswitch/screenshots/01-main-view.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/illustar0/sourceswitch/screenshots/02-settings.png",
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/illustar0/sourceswitch/screenshots/03-search-results.png"
],
"addedAt": "2026-04-27"
},
{
"id": "jdalley.toggle-hdr",
"title": "Toggle HDR",
"shortDescription": "Toggle HDR on/off for a single display at a time.",
"description": "Enables you to toggle Windows HDR for one of the displays attached to your machine at a time. Primarily avoiding the global Windows shortcut Win + Alt + B, which toggles HDR for all monitors at once.\n\nIt was written to solve the problem of wanting to enable HDR for a game on a main display, while not having blown-out HDR elements displaying on other displays running other applications.",
"author": {
"name": "Jeff Dalley",
"url": "https://github.com/jdalley"
},
"homepage": "https://github.com/jdalley/command-palette-toggle-hdr",
"tags": [
"hdr",
"toggle"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9pl3dp61zjtn"
},
{
"type": "winget",
"id": "jdalley.ToggleHDRforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jdalley/toggle-hdr/icon.png",
"screenshotUrls": [
"https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jdalley/toggle-hdr/screenshots/01-example.png"
],
"addedAt": "2026-04-21"
},
{
"id": "jiripolasek.change-case",
"title": "Change Case",
"shortDescription": "Transform text case with camelCase, PascalCase, snake_case, kebab-case, UPPER, lower, title, and more.",
"description": "Effortlessly transform text case without leaving the Command Palette. Instantly change the case of text from your clipboard or text entered directly into the Command Palette—no need to switch apps or use additional tools.\n\nChoose from a wide array of case transformations, including Capital Case, Title Case (Chicago style), UPPER CASE, lower case, Sentence case, rAndOm cAsE, sWAP cASE, and more. Developers will appreciate technical options like camelCase, CONSTANT_CASE, Header-Case, kebab-case, PascalCase, and snake_case.\n\nThe extension also remembers your last used transformations, making it quick and easy to access your most common actions without searching through menus.\n\nTake control over text formatting with separator transformations such as dot.case, path/case, and path\\case\\with\\backslash. Easily clean up your text by removing diacritics, special symbols, and duplicate spaces, tabs, or lines.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/ChangeCaseExtension",
"tags": [
"text",
"case-converter",
"developer-tools"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9PK6S30QBKVK"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/change-case/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.colors",
"title": "Colors",
"shortDescription": "Visualize, convert, and manipulate colors instantly from Command Palette.",
"description": "Instant color visualization, conversion, and manipulation directly within the Command Palette. Effortlessly preview, transform, and work with colors—no need to leave your workflow.\n\nConvert between color formats including HEX, RGB, HSL, and more. Preview colors in real time as you type, pick colors from the screen, and copy values in your preferred format.\n\nPerfect for designers and developers who need quick access to color tools without switching applications.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/ColorsExtension",
"tags": [
"colors",
"hex",
"rgb",
"design"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9NDDQK5VVLNB"
},
{
"type": "winget",
"id": "JiriPolasek.ColorsforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/colors/icon.png",
"addedAt": "2026-04-12"
},
{
"id": "jiripolasek.dev-numbers",
"title": "Dev Numbers",
"shortDescription": "Convert and calculate numeric values across decimal, hex, octal, and binary formats.",
"description": "A powerful tool for converting and calculating numeric values across various number systems. Whether you’re a developer, engineer, or tech enthusiast, this extension simplifies numeric manipulation with seamless input recognition and smart format handling.\n\nDev Numbers supports conversions between decimal, hexadecimal, octal, and binary formats, and automatically detects numerous format styles, including those used in C, C++, C#, Visual Basic, and more. It even accommodates format suffixes and special characters for maximum flexibility.\n\nYou can also specify bit lengths for accurate truncation or representation of negative numbers, making it ideal for low-level development tasks. With Dev Numbers, working with complex numeric formats is easier, faster, and more intuitive.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/DevNumbersExtension",
"tags": [
"numbers",
"converter",
"developer-tools",
"hex"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9PFN6H5D5XPN"
},
{
"type": "winget",
"id": "JiriPolasek.DevNumbersforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/dev-numbers/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.errors-and-codes",
"title": "Errors and Codes",
"shortDescription": "Look up NTSTATUS, HRESULT, and Windows error codes with detailed explanations.",
"description": "Instantly make sense of cryptic error codes! Quickly access clear, detailed explanations of NTSTATUS, HRESULT, and other common Microsoft and Windows error codes—right from the Command Palette.\n\nWhether you’re debugging, troubleshooting, or just curious, simply type or paste an error code in any format (hex, decimal, signed, or unsigned) and let the tool do the rest. The extension automatically detects the format and finds all relevant representations across a variety of Microsoft products.\n\nDrawing on authoritative sources like Winerror.h and Setupapi.h from Windows SDK 10.0.26100, this extension ensures you have the context you need, when you need it. While the database is extensive, it may not cover every possible error code.\n\nSpend less time searching, and more time solving problems—with error details just a keystroke away.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/ErrorsAndCodesExtension",
"tags": [
"errors",
"debugging",
"developer-tools",
"windows"
],
"categories": [
"developer-tools",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9P2NM9KVRD3G"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/errors-and-codes/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.media-controls",
"title": "Media Controls",
"shortDescription": "Control media playback and switch between apps playing audio or video directly from Command Palette.",
"description": "Take full control of your media playback without ever leaving your workflow. Manage audio and video seamlessly across your favorite apps—all from one convenient place. Instantly play, pause, skip tracks, or jump back, and easily switch between open media players.\n\nSupports popular applications including Apple Music, Spotify, foobar2000, VLC UWP, Media Player, Microsoft Edge, Google Chrome and other web browsers, Netflix, Disney+, HBO Max, SkyShowtime, Amazon Prime Video and other video players, YouTube, SoundCloud and other web players, and many more.\n\nWith intuitive commands for shuffle, loop, and quick player switching, it’s the perfect companion for anyone who juggles multiple media sources while working.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/MediaControlsExtension",
"tags": [
"media",
"playback",
"audio",
"music"
],
"categories": [
"entertainment",
"music"
],
"installSources": [
{
"type": "msstore",
"id": "9N3BQ81G19K7"
},
{
"type": "winget",
"id": "JiriPolasek.MediaControlsforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/media-controls/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.qr-codes",
"title": "QR Codes",
"shortDescription": "Generate, scan, and decode QR codes for URLs, text, email, phone numbers, and contacts.",
"description": "Instantly create, scan, and manage QR codes right from the Command Palette—no need to open another app or website. Generate QR codes for URLs, text, and more with just a few keystrokes. Whether you’re sharing information with colleagues or quickly transferring data to your mobile device, it’s the fastest way to get it done.\n\nGenerate QR codes for a wide range of data types—including URLs, email addresses, phone numbers, and contact cards—and scan or decode QR codes directly from your screen or images in your clipboard. All generated QR codes are crisp, high-quality, and ready to use anywhere.\n\nIt’s fast, efficient, and works entirely offline for your privacy. Perfect for developers, IT pros, educators, or anyone who frequently needs to generate QR codes without breaking their workflow.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/QRCodesExtension",
"tags": [
"qr-code",
"generator",
"scanner",
"utility"
],
"categories": [
"utilities-and-tools",
"productivity"
],
"installSources": [
{
"type": "msstore",
"id": "9NF4DFZKW6BS"
},
{
"type": "winget",
"id": "JiriPolasek.QRCodesforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/qr-codes/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.recent-files",
"title": "Recent Files",
"shortDescription": "Quickly access your most recently opened files directly from Command Palette.",
"description": "Provides quick access to recently opened files directly from the Command Palette. Browse your file history and reopen documents, projects, and other files without navigating through folders or searching your system.\n\nThe extension integrates with the Windows recent files list, giving you instant access to your most frequently used files right where you need them.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/RecentFilesExtension",
"tags": [
"files",
"recent",
"productivity",
"quick-access"
],
"categories": [
"productivity",
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9NV6ZG7C7S9L"
},
{
"type": "winget",
"id": "JiriPolasek.RecentFilesforCommandPalette"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/recent-files/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.symbols-and-emojis",
"title": "Symbols and Emojis",
"shortDescription": "Search and insert Unicode symbols, emojis, and special characters with code points and details.",
"description": "Need to quickly find and use a symbol, emoji, or special character? This extension brings a full Unicode character explorer right into your Command Palette. Instantly search for any emoji, symbol, or Unicode character by name or category, view detailed character info, and copy it to your clipboard with a click.\n\nWhether you're a developer, designer, or power user, this tool saves time by providing code points, escape sequences, HTML entities, and LaTeX representations all in one place. No need to open a separate app or website—everything is accessible right from your workspace.\n\nPerfect for coding, writing documentation, creating content, or simply spicing up your messages with emojis.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://apps.microsoft.com/detail/9NZ06M9CNV77",
"tags": [
"emoji",
"unicode",
"symbols",
"characters"
],
"categories": [
"utilities-and-tools",
"productivity"
],
"installSources": [
{
"type": "msstore",
"id": "9NZ06M9CNV77"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/symbols-and-emojis/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.toggle-dark-mode",
"title": "Toggle Dark Mode",
"shortDescription": "Quickly toggle Windows or application dark mode directly from Command Palette.",
"description": "Toggle dark mode quickly from Command Palette. Switch between light and dark color modes for Windows or individual applications with a single command.\n\nSet color mode for the system and applications together or separately, and configure the default behavior to suit your needs. Perfect for quickly adapting your display to different lighting conditions or personal preferences.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://github.com/jiripolasek/ToggleDarkModeExtension",
"tags": [
"dark-mode",
"theme",
"appearance",
"utility"
],
"categories": [
"personalization"
],
"installSources": [
{
"type": "msstore",
"id": "9MZSV48WJM71"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/toggle-dark-mode/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "jiripolasek.unit-converter",
"title": "Unit Converter",
"shortDescription": "Convert between common units of measurement like length, weight, time, volume, and area.",
"description": "Stop switching between apps or browsing the web for simple conversions. With Unit Converter for Command Palette, you can instantly convert between common units of measurement—right within your workflow.\n\nEasily convert between length, weight, time, volume, area, temperature, speed, and more without interrupting your flow. Simply open the Command Palette, type your query (like \"10 km in miles\"), and get results in real-time.\n\nWhether you're a developer, student, or multitasker, this extension helps you stay focused by delivering fast and accurate unit conversions. Perfect for anyone needing quick conversions without clutter or distraction.",
"author": {
"name": "Jiri Polasek",
"url": "https://github.com/jiripolasek"
},
"homepage": "https://apps.microsoft.com/detail/9N46RM40VR8D",
"tags": [
"converter",
"units",
"measurement",
"utility"
],
"categories": [
"utilities-and-tools"
],
"installSources": [
{
"type": "msstore",
"id": "9N46RM40VR8D"
}
],
"iconUrl": "https://raw.githubusercontent.com/microsoft/CmdPal-Extensions/main/extensions/jiripolasek/unit-converter/icon.png",
"addedAt": "2026-04-10"
},
{
"id": "joadoumie.nba-command-palette",
"title": "NBA",
"shortDescription": "Real-time NBA scores, schedules, rosters, and stats right in your Command Palette.",
"description": "Bring the NBA into your Windows Command Palette. Browse upcoming games for the week with live scores, team records, and game status indicators. View statistical leaders for any matchup — season PPG, RPG, and APG for upcoming games, or per-game leaders for live and completed matchups. Explore full team rosters with player bios, jersey numbers, physical stats, injury status, and direct links to ESPN pages for player stats, game logs, news, and splits. Smart fuzzy search lets you filter by team name instantly — type \"lakers\" or \"warriors\" and find what you need without leaving your workflow. Game data and stats courtesy of ESPN.",
"author": {
"name": "joadoumie",
"url": "https://github.com/joadoumie"