Skip to content

Conversation

@0xdhrv
Copy link
Contributor

@0xdhrv 0xdhrv commented Dec 10, 2025

Description

This pull request introduces several important improvements and enhancements to the Search Domain Raycast extension. The update switches the domain availability check to use the ICANN RDAP protocol for more accurate results, adds support for Windows, improves UI responsiveness, and introduces a new history command for managing past searches. Additionally, dependencies are updated and code quality tooling is modernized.

Domain availability and registry improvements:

  • Switched from a custom API endpoint to using the ICANN RDAP protocol (rdap.org) for domain availability checks, preventing false positives and ensuring authoritative registration data. The implementation now parses RDAP responses and displays detailed domain information for registered domains.

History and UI enhancements:

  • Added a new history command (history.tsx) to view, sort, delete, and clear past domain searches, with persistent storage in LocalStorage and improved UI responsiveness. Keyboard shortcuts for history management have been updated and clarified in the documentation.

Platform and dependency updates:

  • Added Windows to the supported platforms and updated all dependencies to their latest versions for better compatibility and performance.
  • Migrated ESLint configuration to the new eslint.config.mjs format and removed the old .eslintrc.json file for modern code quality tooling.

Contributors and metadata:

  • Added a new contributor to the package.json and clarified extension metadata.

These changes collectively improve the accuracy, usability, and maintainability of the extension.

Screencast

Click-2025-12-10-12.34.57.mp4

Checklist

Dhruv Suthar added 2 commits December 10, 2025 16:43
- feat: add domain search history and update dependencies
- Initial commit
@raycastbot raycastbot added extension fix / improvement Label for PRs with extension's fix improvements extension: search-domain Issues related to the search-domain extension platform: macOS platform: Windows labels Dec 10, 2025
@raycastbot
Copy link
Collaborator

raycastbot commented Dec 10, 2025

Thank you for your contribution! 🎉

🔔 @hasanakay you might want to have a look.

You can use this guide to learn how to check out the Pull Request locally in order to test it.

You can expect an initial review within five business days.

@0xdhrv 0xdhrv marked this pull request as ready for review December 10, 2025 12:36
Copilot AI review requested due to automatic review settings December 10, 2025 12:36
@greptile-apps
Copy link
Contributor

greptile-apps bot commented Dec 10, 2025

Greptile Summary

This PR significantly improves the Search Domain extension by switching from a custom API to the authoritative ICANN RDAP protocol (rdap.org) for more accurate domain availability checks, preventing false positives. The implementation adds a new history command with comprehensive management features (view, sort, delete, clear), introduces a detailed domain information view for registered domains displaying ownership and registration data, and adds Windows platform support.

Key improvements:

  • Switched to RDAP protocol for authoritative domain registration data
  • Added new history command with proper UI patterns (List, isLoading, EmptyView)
  • Implemented detailed domain view showing registrant, registrar, dates, and nameservers
  • Migrated ESLint config to modern flat config format (eslint.config.cjs)
  • Updated all dependencies to latest versions
  • Proper error handling with showFailureToast and try-catch blocks
  • launchCommand is correctly wrapped in try-catch

The code follows Raycast best practices with proper List component usage, loading states, empty views, and error handling.

Confidence Score: 4/5

  • Safe to merge with minor documentation inconsistency and fallback TLD inconsistency
  • The code is well-implemented with proper error handling, follows Raycast best practices, and the RDAP integration is sound. Two minor issues reduce the score from 5: keyboard shortcut documentation doesn't match implementation, and there's a TLD inconsistency in the fallback logic (.pw vs .com)
  • Pay attention to README.md for keyboard shortcut documentation accuracy and search-domain.tsx:259 for TLD fallback consistency

Important Files Changed

Filename Overview
extensions/search-domain/package.json Added new history command, updated dependencies, added Windows support, and added contributor. All changes are appropriate.
extensions/search-domain/CHANGELOG.md Added new changelog entry with correct {PR_MERGE_DATE} template string and proper placement at the top.
extensions/search-domain/eslint.config.cjs Correctly migrated to modern ESLint flat config format, matching the standard Raycast template.
extensions/search-domain/src/search-domain.tsx Switched to RDAP protocol, added detailed domain view, improved error handling. Good implementation with proper try-catch and showFailureToast usage.
extensions/search-domain/src/history.tsx New history command with proper List component, isLoading state, empty view, and error handling for launchCommand.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (3)

  1. extensions/search-domain/eslint.config.mjs, line 1-4 (link)

    syntax: uses incorrect import syntax - should use require instead

  2. extensions/search-domain/src/search-domain.tsx, line 118 (link)

    logic: Copy action has empty onAction handler - it won't copy the value

  3. extensions/search-domain/src/history.tsx, line 80-86 (link)

    style: missing isLoading state during history load to prevent empty state flicker - see docs

9 files reviewed, 3 comments

Edit Code Review Agent Settings | Greptile

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

@0xdhrv 0xdhrv marked this pull request as draft December 10, 2025 13:07
@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 10, 2025

@greptileai could you please re-review of this PR?

@0xdhrv 0xdhrv marked this pull request as ready for review December 10, 2025 14:11
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (4)

  1. extensions/search-domain/src/search-domain.tsx, line 182-208 (link)

    logic: Missing try-catch block around the fetch operation - network errors will cause unhandled rejections. Wrap the fetch and response parsing in try-catch.

  2. extensions/search-domain/eslint.config.cjs, line 1-4 (link)

    syntax: ESLint config should use eslint/config instead of eslint/config. The expected format from the template is:

  3. extensions/search-domain/README.md, line 23 (link)

    syntax: Keyboard shortcut listed as Cmd + P but in the code it's Cmd + B (line 302 of search-domain.tsx). Update to match the actual implementation.

  4. extensions/search-domain/src/search-domain.tsx, line 176 (link)

    style: Default TLD changed from .com to .pw - was this intentional? .com is more commonly used and expected by users.

9 files reviewed, 4 comments

Edit Code Review Agent Settings | Greptile

Copy link
Collaborator

@pernielsentikaer pernielsentikaer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @0xdhrv

Thanks for your contribution 🔥

In the new command I’d suggest:

  1. If there is no history, then add launchCommand to the search command (remember async and try/catch)
  2. When the list is empty then there isToggle Sort Order but that’s also possible in the dropdown in upper right?
  3. There is a Clear All History action when the list is empty

There is a few small tweaks that could improve this further 🙂

@pernielsentikaer pernielsentikaer marked this pull request as draft December 12, 2025 08:01
@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 12, 2025

Hi @0xdhrv

Thanks for your contribution 🔥

In the new command I’d suggest:

  1. If there is no history, then add launchCommand to the search command (remember async and try/catch)
  2. When the list is empty then there isToggle Sort Order but that’s also possible in the dropdown in upper right?
  3. There is a Clear All History action when the list is empty

There is a few small tweaks that could improve this further 🙂

Thanks for the suggestions. I'll get started on them.

@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 12, 2025

@greptileai, could you please do a fresh review of this PR?

@0xdhrv 0xdhrv marked this pull request as ready for review December 12, 2025 09:35
@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 12, 2025

Hi @0xdhrv

Thanks for your contribution 🔥

In the new command I’d suggest:

  1. If there is no history, then add launchCommand to the search command (remember async and try/catch)
  2. When the list is empty then there isToggle Sort Order but that’s also possible in the dropdown in upper right?
  3. There is a Clear All History action when the list is empty

There is a few small tweaks that could improve this further 🙂

@pernielsentikaer

Updated as part of 38a5840

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (1)

  1. extensions/search-domain/README.md, line 24 (link)

    logic: The README documents Cmd + R for toggling sort order, but the actual implementation in history.tsx uses a dropdown instead. This shortcut no longer exists in the code.

9 files reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 12, 2025

@greptileai, could you please do a fresh review of this PR?

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (1)

  1. extensions/search-domain/src/history.tsx, line 114-123 (link)

    logic: launchCommand should be wrapped in a try-catch block for error handling

9 files reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 15, 2025

@greptileai, could you please do a fresh review of this PR?

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (2)

  1. extensions/search-domain/eslint.config.cjs, line 1 (link)

    syntax: incorrect import path - should be eslint-config not eslint/config

  2. extensions/search-domain/package.json, line 32-36 (link)

    style: React version mismatch: dependencies specify ^19.2.1 but resolutions force ^18.2.0. The resolutions will override, so React 18 will be used. Consider aligning these versions or removing the resolutions if React 19 is truly needed.

9 files reviewed, 2 comments

Edit Code Review Agent Settings | Greptile

@pernielsentikaer
Copy link
Collaborator

@greptileai both @raycast/eslint-config and eslint/config IS correct paths! Please update and remember this!

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect! I've noted that both @raycast/eslint-config and eslint/config are correct import paths for ESLint configuration. This rule will help ensure that future reviews don't flag these as incorrect imports when using the modern ESLint flat config format.

Here's a link to the new rule that will be applied in future reviews.

@pernielsentikaer
Copy link
Collaborator

Is there more you're still working on here with the latest feedback from Greptile, @0xdhrv

@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 15, 2025

2. style: React version mismatch: dependencies specify ^19.2.1 but resolutions force ^18.2.0. The resolutions will override, so React 18 will be used. Consider aligning these versions or removing the resolutions if React 19 is truly needed.

Yes, checking on this ^ @pernielsentikaer

@0xdhrv 0xdhrv marked this pull request as draft December 15, 2025 09:30
@0xdhrv 0xdhrv marked this pull request as ready for review December 15, 2025 13:11
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (1)

  1. extensions/search-domain/CHANGELOG.md, line 7 (link)

    style: Technical accuracy: says "ICANN WHOIS server" but the implementation uses RDAP (Registration Data Access Protocol), not WHOIS. Consider updating to "Switched to the ICANN RDAP protocol" to match the actual implementation.

9 files reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@0xdhrv
Copy link
Contributor Author

0xdhrv commented Dec 16, 2025

@greptileai, could you please do a fresh review of this PR?

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

9 files reviewed, no comments

Edit Code Review Agent Settings | Greptile

@pernielsentikaer
Copy link
Collaborator

https://github.com/greptileai, could you please do a fresh review of this PR?

@pernielsentikaer
Copy link
Collaborator

@greptileai can you do a fresh review here?

Copy link
Collaborator

@pernielsentikaer pernielsentikaer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me, approved 🔥

@raycastbot raycastbot merged commit 1384cfa into raycast:main Dec 17, 2025
3 checks passed
@github-actions
Copy link
Contributor

Published to the Raycast Store:
https://raycast.com/hasanakay/search-domain

@raycastbot
Copy link
Collaborator

🎉 🎉 🎉

We've rewarded your Raycast account with some credits. You will soon be able to exchange them for some swag.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional Comments (2)

  1. extensions/search-domain/README.md, line 23-24 (link)

    syntax: Keyboard shortcut Cmd + N is documented for "Return to search from history view" but this shortcut is actually used for "Search Domain" action when history is empty (in history.tsx:127). The history view uses the "Back to Search" action without a documented shortcut.

  2. extensions/search-domain/src/search-domain.tsx, line 259 (link)

    logic: Why does the fallback use .pw TLD instead of .com which is used elsewhere (line 176)?

    Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

9 files reviewed, 2 comments

Edit Code Review Agent Settings | Greptile

ahpatel added a commit to ahpatel/raycast-extensions that referenced this pull request Dec 22, 2025
- Fix preferences typing + org search filter
- updated the helper functions for getting Preferences
- package updates: raycast, node, react
- pipedrive: add person detail view + avatar cache + photo upload
- feat(pipedrive): harden API client + improve submit UX
- feat(pipedrive): create & edit deals, contacts, orgs
- Sync extensions/pipedrive with upstream/main
- Update pipedrive extension
- lint
- Merge branch \'raycast:main\' into ext/pipedrive
- icon/emjoi normalization across panes
- Update pipedrive extension
- lint
- empty-results list default-selects the first “Create …” item
- updated Action shortcuts that overlapped with Raycast reserved shortcuts
- added option to add multiple emails and phone numbers
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- updated Preferecnes to be pulled from raycast-env.d.ts instead of manually defining them
- updated Preferecnes to be pulled from raycast-env.d.ts instead of manually defining them
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- reordered List of new actions to put contacts and orgs above deals
- reordered List of new actions to put contacts and orgs above deals
- Update pipedrive extension
- pipedrive: fix changelog date + format deal detail
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- pipedrive: default enter details; cmd+enter open in browser
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- pipedrive: add person detail view + avatar cache + photo upload
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(pipedrive): harden API client + improve submit UX
- feat(pipedrive): create & edit deals, contacts, orgs
- chore(pipedrive): update dependencies
- Pipedrive: remove reserved shortcut
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Pipedrive: add contact/org creation forms
- Sync extensions/pipedrive with upstream/main
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)
- Add whentomeet extension (#20675)
- Update CODEOWNERs
- Add Circleback extension (#21391)
- Update CODEOWNERs
- update packages and add option to exit raycast after cleaning link (#21269)
- Update CODEOWNERs
- Add tuneblade extension (#21350)
- Update wechat-devtool extension (#21399)
- Update CODEOWNERs
- feat(KeepassXC): add windows support. (#21430)
- Add Qovery extension (#21255)
- Update CODEOWNERs
- Update raindrop-io extension (#21394)
- Update comet extension (#21362)
- Update CODEOWNERs
- Update cheatsheets-remastered extension (#21376)
- Add publora extension (#21372)
- Update CODEOWNERs
- Update CODEOWNERs
- Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406)
- [cURL Extension] Add Windows Support (#21427)
- [Raindrop.io] Move @sh-cho to past contributors (#21435)
- [Update] [Things] Add project update/delete tools and improve type safety (#21416)
- Update obsidian-link-opener extension (#21443)
- Update zed-recent-projects extension to use latest sqlite Zed schema (#21180)
- Fix Jira extension: JQL error (#21429)
- Docs: update for the new API release
- Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370)
- Update github extension (#21381)
- Update docker extension (#21398)
- Update Advanced Replace for regex transforms and entry options (#21409)
- Update deepwiki extension (#21400)
- Update meta-music extension (#21417)
- Update CODEOWNERs
- Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421)
- Update instagram media downloader extension (#21422)
- Update CODEOWNERs
- Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349)
- Update CODEOWNERs
- Add red-note-post-viewer extension (#21315)
- Fix documentation for screenshot extension: capture-to-clipboard command (#21311)
- Update flibusta-search extension (#21327)
- Mention Forked Extensions in dev doc (#21158)
- Update CODEOWNERs
- Fix todoist extension: Setting due date and time (#21331)
- Update CODEOWNERs
- Add plexus extension (#21289)
- Update CODEOWNERs
- Add r2-uploader extension (#21215)
- Cursor Agents: Add a new tool to get back all repositories that are s… (#21337)
- Update CODEOWNERs
- [cursor-agents] Made `ref` optional in the agent launch form (#21334)
- Cursor: Few smaller fixes (#21333)
- Add error handling for launchCommand (#21332)
- Update CODEOWNERs
- Cursor Agents (#21328)
- Update CODEOWNERs
- Update memos extension (#21213)
- Release more extensions on Windows (#21324)
- Update CODEOWNERs
- Update google-chrome extension (#21235)
- Add lockfiles and registry rules to copilot instructions (#21254)
- docs: update documentation (#21325)
- Update CODEOWNERs
- [Gandi] New Extension (#21120)
- Update RAE Dictionary extension with latest improvements (#21307)
- Update CODEOWNERs
- Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322)
- Update zeabur extension (#21321)
- Update CODEOWNERs
- Add music-assistant-controls extension (#21249)
- Update CODEOWNERs
- Add ChartMogul extension (#21251)
- [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623)
- Fix incorrect error message in GitHub Enterprise issues search (#21231)
- Update CODEOWNERs
- Add hebrew-date-zmanim extension (#21292)
- Update CODEOWNERs
- Add atomberg-raycast-extension extension (#21185)
- Improve error handling in GitHub Copilot extension (#21308)
- feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224)
- feat(shell-history): add option to reverse history order (#21304)
- Update CODEOWNERs
- Add vanishlink extension (#20996)
- Revert "Renaming metadata images (#21305)" (#21306)
- Update brreg extension (#21169)
- Update brave-search-with-results extension (#20916)
- [Farcaster] cleanup and migration (#21299)
- Renaming metadata images (#21305)
- Fix `pr-bot` for detecting touched extensions (#21250)
- Update CODEOWNERs
- Add Windows support and update dependencies (#21282)
- Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276)
- Update CODEOWNERs
- Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602)
- [Forked Extensions] Improve Sync actions (#21294)
- [Bitwarden] Sync vault on command launch (#21300)
- Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302)
- [Forked Extensions] Fix the fork action (#21281)
- Update CODEOWNERs
- Add tallinn-transport extension (#20762)
- Update CODEOWNERs
- [Mozilla Firefox] Refactor and fixes (#20767)
- Update CODEOWNERs
- [Whimsical]: First version, only AI (#20815)
- feat(raindrop-io): prefill add form from launch context (#21261)
- Update CODEOWNERs
- Fix todoist extension: An error creating task (#21153)
- [Forked Extensions] Improve error handlers and toasts (#21222)
- Update CODEOWNERs
- Update spotify-player extension (#21234)
- Update CODEOWNERs
- Update ado-search extension (#20586)
- Update CODEOWNERs
- Add sourcegraph-amp-dash-x extension (#20730)
- Update CODEOWNERs
- Update dotmate extension (#21129)
- Update CODEOWNERs
- Add barassistant extension (#21126)
- Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & …
hetommy added a commit to hetommy/raycast-extensions that referenced this pull request Dec 26, 2025
- Add upload, delete, and download features with cache invalidation
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)
- Add whentomeet extension (#20675)
- Update CODEOWNERs
- Add Circleback extension (#21391)
- Update CODEOWNERs
- update packages and add option to exit raycast after cleaning link (#21269)
- Update CODEOWNERs
- Add tuneblade extension (#21350)
- Update wechat-devtool extension (#21399)
- Update CODEOWNERs
- feat(KeepassXC): add windows support. (#21430)
- Add Qovery extension (#21255)
- Update CODEOWNERs
- Update raindrop-io extension (#21394)
- Update comet extension (#21362)
- Update CODEOWNERs
- Update cheatsheets-remastered extension (#21376)
- Add publora extension (#21372)
- Update CODEOWNERs
- Update CODEOWNERs
- Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406)
- [cURL Extension] Add Windows Support (#21427)
- [Raindrop.io] Move @sh-cho to past contributors (#21435)
- [Update] [Things] Add project update/delete tools and improve type safety (#21416)
- Update obsidian-link-opener extension (#21443)
- Update zed-recent-projects extension to use latest sqlite Zed schema (#21180)
- Fix Jira extension: JQL error (#21429)
- Docs: update for the new API release
- Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370)
- Update github extension (#21381)
- Update docker extension (#21398)
- Update Advanced Replace for regex transforms and entry options (#21409)
- Update deepwiki extension (#21400)
- Update meta-music extension (#21417)
- Update CODEOWNERs
- Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421)
- Update instagram media downloader extension (#21422)
- Update CODEOWNERs
- Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349)
- Update CODEOWNERs
- Add red-note-post-viewer extension (#21315)
- Fix documentation for screenshot extension: capture-to-clipboard command (#21311)
- Update flibusta-search extension (#21327)
- Mention Forked Extensions in dev doc (#21158)
- Update CODEOWNERs
- Fix todoist extension: Setting due date and time (#21331)
- Update CODEOWNERs
- Add plexus extension (#21289)
- Update CODEOWNERs
- Add r2-uploader extension (#21215)
- Cursor Agents: Add a new tool to get back all repositories that are s… (#21337)
- Update CODEOWNERs
- [cursor-agents] Made `ref` optional in the agent launch form (#21334)
- Cursor: Few smaller fixes (#21333)
- Add error handling for launchCommand (#21332)
- Update CODEOWNERs
- Cursor Agents (#21328)
- Update CODEOWNERs
- Update memos extension (#21213)
- Release more extensions on Windows (#21324)
- Update CODEOWNERs
- Update google-chrome extension (#21235)
- Add lockfiles and registry rules to copilot instructions (#21254)
- docs: update documentation (#21325)
- Update CODEOWNERs
- [Gandi] New Extension (#21120)
- Update RAE Dictionary extension with latest improvements (#21307)
- Update CODEOWNERs
- Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322)
- Update zeabur extension (#21321)
- Update CODEOWNERs
- Add music-assistant-controls extension (#21249)
- Update CODEOWNERs
- Add ChartMogul extension (#21251)
- [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623)
- Fix incorrect error message in GitHub Enterprise issues search (#21231)
- Update CODEOWNERs
- Add hebrew-date-zmanim extension (#21292)
- Update CODEOWNERs
- Add atomberg-raycast-extension extension (#21185)
- Improve error handling in GitHub Copilot extension (#21308)
- feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224)
- feat(shell-history): add option to reverse history order (#21304)
- Update CODEOWNERs
- Add vanishlink extension (#20996)
- Revert "Renaming metadata images (#21305)" (#21306)
- Update brreg extension (#21169)
- Update brave-search-with-results extension (#20916)
- [Farcaster] cleanup and migration (#21299)
- Renaming metadata images (#21305)
- Fix `pr-bot` for detecting touched extensions (#21250)
- Update CODEOWNERs
- Add Windows support and update dependencies (#21282)
- Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276)
- Update CODEOWNERs
- Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602)
- [Forked Extensions] Improve Sync actions (#21294)
- [Bitwarden] Sync vault on command launch (#21300)
- Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302)
- [Forked Extensions] Fix the fork action (#21281)
- Update CODEOWNERs
- Add tallinn-transport extension (#20762)
- Update CODEOWNERs
- [Mozilla Firefox] Refactor and fixes (#20767)
- Update CODEOWNERs
- [Whimsical]: First version, only AI (#20815)
- feat(raindrop-io): prefill add form from launch context (#21261)
- Update CODEOWNERs
- Fix todoist extension: An error creating task (#21153)
- [Forked Extensions] Improve error handlers and toasts (#21222)
- Update CODEOWNERs
- Update spotify-player extension (#21234)
- Update CODEOWNERs
- Update ado-search extension (#20586)
- Update CODEOWNERs
- Add sourcegraph-amp-dash-x extension (#20730)
- Update CODEOWNERs
- Update dotmate extension (#21129)
- Update CODEOWNERs
- Add barassistant extension (#21126)
- Update `Airtable` extension - precise errors + `Add` Icon to **Bases** …
slavarazum added a commit to slavarazum/extensions that referenced this pull request Dec 28, 2025
- [Craft] style: fix lint errors
- [Craft] chore: add screenshots
- [Craft] feat(daily-notes): add calendar icon with color coding based on date for daily notes
- [Craft] feat(api): add "Start Focus" submenu with customizable durations in TaskListItem
- [Craft] fix(api): adjust end date handling for "All" date range in daily notes
- [Craft] fix(api): correct end of week calculation in groupTasksByTimePeriod function
- [Craft] feat(api): enable mutations for task lists in inbox, logbook, today, and upcoming views
- [Craft] feat(api): implement quick task submission with automatic scheduling and deadline handling
- [Craft] refactor(api): remove console logs from fetch and manage spaces functions
- [Craft] fix(api): update fetchSpaceIdFromApi to use a specific date for API request
- [Craft] refactor(package.json): remove AI instructions and evals, update dependencies; add new ai.json file with detailed instructions and evals
- [Craft] feat(api): update API integration to support daily notes and tasks
- [Craft] docs: enhance tool documentation with usage instructions for collections, tasks, and documents
- [Craft] docs: update CHANGELOG with initial version features and enhancements
- [Craft] feat(api): add support for API keys in documents and daily notes connections
- [Craft] docs: update README with detailed features, setup instructions, and command list
- [Craft] feat(commands): add commands to create tasks and documents from selection or clipboard
- [Craft] feat(folders): add folder management features including flattening, hooks, and UI for creating, moving, and deleting folders
- [Craft] feat(manage-spaces): update command metadata based on selected space
- [Craft] feat(action): unify "open in app" action between the commands
- [Craft] feat(action): unify the "open in app" action
- [Craft] feat(tasks): enhance TaskLocation interface and implement daily note date formatting
- [Craft] feat(date-utils): add formatLocalDate function and update date formatting across components
- [Craft] feat(daily-notes): refactor daily note detail to use markdown display
- [Craft] feat(create-document): enhance document creation flow with open option
- [Craft] feat(spaces): fetch real spaceId for a space
- [Craft] fix(task-list): correct label for active tasks in scope configuration
- [Craft] feat(task-list): add grouping for upcoming tasks by time period
- [Craft] feat(task-list): add hideLocation prop to TaskListItem for improved task display
- [Craft] feat(task-list): enhance schedule date formatting for better clarity
- [Craft] feat(task-list): enhance deadline display with flag icon and formatted date
- [Craft] refactor(tasks): remove "show" from the viewing command names to simplify namings
- [Craft] feat(daily-notes): enhance daily note functionality with Markdown support and improved error handling
- [Craft] feat(assets): replace old icons with new ones and update package.json
- Craft] feat(spaces): implement UI for adding, editing, and deleting spaces
- [Craft] feat(assets): add Craft logo in dark/light themes
- [Craft] feat(tools): add various tools to integrate Craft API with Raycast AI
- [Craft] feat(documents): add create document functionality and enhance document management with location filtering
- [Craft] style(commands): try other command titles
- [Craft] feat(recently-deleted): add functionality to view and manage recently deleted documents
- [Craft] style(tasks): polish command names
- [Craft] feat(daily-notes): add functionality to view and manage daily notes
- [Craft] feat(tasks): enhance task grouping by location
- [Craft] feat(tasks): add functionality to quickly add new tasks with scheduling and deadline options
- [Craft] feat(tasks): add task completion animation and state indication
- [Craft] refactor(links): add deep link functionality for opening blocks and documents
- [Craft] feat(tasks): enhance task management with new task creation and listing components
- [Craft]: add useRecentDocuments hook for fetching and deduplicating recent documents
- [Craft] refactor search documents functionality to support pagination and improve document fetching logic
- [Craft]: improve document and block search functionality, now you can open a block in the local app
- [Craft]: Document search works optimally
- [Craft]: add execute option to useDocuments hook for conditional fetching in search
- [Craft] refactor useSpaceId hook to cache space ID in LocalStorage and improve API fetching logic
- [Craft]: add preferences for API URLs and update client functions to retrieve them
- [Craft]: implement useSpaceId hook to fetch space ID via API workaround and integrate into document search
- [Craft] added document title to search results, centred searchable keyword
- [Craft]: enhance API structure and improve type definitions across domains
- [Craft]: refactor from low level fetch to useFetch from Raycast API
- [Craft]: consolidate types, endpoints, and methods by domain for improved organization and maintainability
- [Craft] created API layer, created search blocks command
- [Craft]: init extension
- Update dependencies
- Updated meta config files
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)…
atzzCokeK pushed a commit to atzzCokeK/extensions that referenced this pull request Dec 31, 2025
- chore: delete package-lock.json
- feat: add "compound" extension
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)
- Add whentomeet extension (#20675)
- Update CODEOWNERs
- Add Circleback extension (#21391)
- Update CODEOWNERs
- update packages and add option to exit raycast after cleaning link (#21269)
- Update CODEOWNERs
- Add tuneblade extension (#21350)
- Update wechat-devtool extension (#21399)
- Update CODEOWNERs
- feat(KeepassXC): add windows support. (#21430)
- Add Qovery extension (#21255)
- Update CODEOWNERs
- Update raindrop-io extension (#21394)
- Update comet extension (#21362)
- Update CODEOWNERs
- Update cheatsheets-remastered extension (#21376)
- Add publora extension (#21372)
- Update CODEOWNERs
- Update CODEOWNERs
- Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406)
- [cURL Extension] Add Windows Support (#21427)
- [Raindrop.io] Move @sh-cho to past contributors (#21435)
- [Update] [Things] Add project update/delete tools and improve type safety (#21416)
- Update obsidian-link-opener extension (#21443)
- Update zed-recent-projects extension to use latest sqlite Zed schema (#21180)
- Fix Jira extension: JQL error (#21429)
- Docs: update for the new API release
- Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370)
- Update github extension (#21381)
- Update docker extension (#21398)
- Update Advanced Replace for regex transforms and entry options (#21409)
- Update deepwiki extension (#21400)
- Update meta-music extension (#21417)
- Update CODEOWNERs
- Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421)
- Update instagram media downloader extension (#21422)
- Update CODEOWNERs
- Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349)
- Update CODEOWNERs
- Add red-note-post-viewer extension (#21315)
- Fix documentation for screenshot extension: capture-to-clipboard command (#21311)
- Update flibusta-search extension (#21327)
- Mention Forked Extensions in dev doc (#21158)
- Update CODEOWNERs
- Fix todoist extension: Setting due date and time (#21331)
- Update CODEOWNERs
- Add plexus extension (#21289)
- Update CODEOWNERs
- Add r2-uploader extension (#21215)
- Cursor Agents: Add a new tool to get back all repositories that are s… (#21337)
- Update CODEOWNERs
- [cursor-agents] Made `ref` optional in the agent launch form (#21334)
- Cursor: Few smaller fixes (#21333)
- Add error handling for launchCommand (#21332)
- Update CODEOWNERs
- Cursor Agents (#21328)
- Update CODEOWNERs
- Update memos extension (#21213)
- Release more extensions on Windows (#21324)
- Update CODEOWNERs
- Update google-chrome extension (#21235)
- Add lockfiles and registry rules to copilot instructions (#21254)
- docs: update documentation (#21325)
- Update CODEOWNERs
- [Gandi] New Extension (#21120)
- Update RAE Dictionary extension with latest improvements (#21307)
- Update CODEOWNERs
- Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322)
- Update zeabur extension (#21321)
- Update CODEOWNERs
- Add music-assistant-controls extension (#21249)
- Update CODEOWNERs
- Add ChartMogul extension (#21251)
- [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623)
- Fix incorrect error message in GitHub Enterprise issues search (#21231)
- Update CODEOWNERs
- Add hebrew-date-zmanim extension (#21292)
- Update CODEOWNERs
- Add atomberg-raycast-extension extension (#21185)
- Improve error handling in GitHub Copilot extension (#21308)
- feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224)
- feat(shell-history): add option to reverse history order (#21304)
- Update CODEOWNERs
- Add vanishlink extension (#20996)
- Revert "Renaming metadata images (#21305)" (#21306)
- Update brreg extension (#21169)
- Update brave-search-with-results extension (#20916)
- [Farcaster] cleanup and migration (#21299)
- Renaming metadata images (#21305)
- Fix `pr-bot` for detecting touched extensions (#21250)
- Update CODEOWNERs
- Add Windows support and update dependencies (#21282)
- Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276)
- Update CODEOWNERs
- Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602)
- [Forked Extensions] Improve Sync actions (#21294)
- [Bitwarden] Sync vault on command launch (#21300)
- Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302)
- [Forked Extensions] Fix the fork action (#21281)
- Update CODEOWNERs
- Add tallinn-transport extension (#20762)
- Update CODEOWNERs
- [Mozilla Firefox] Refactor and fixes (#20767)
- Update CODEOWNERs
- [Whimsical]: First version, only AI (#20815)
- feat(raindrop-io): prefil…
freepicheep added a commit to freepicheep/extensions that referenced this pull request Jan 4, 2026
- initial rainaissance raycast extension
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)
- Add whentomeet extension (#20675)
- Update CODEOWNERs
- Add Circleback extension (#21391)
- Update CODEOWNERs
- update packages and add option to exit raycast after cleaning link (#21269)
- Update CODEOWNERs
- Add tuneblade extension (#21350)
- Update wechat-devtool extension (#21399)
- Update CODEOWNERs
- feat(KeepassXC): add windows support. (#21430)
- Add Qovery extension (#21255)
- Update CODEOWNERs
- Update raindrop-io extension (#21394)
- Update comet extension (#21362)
- Update CODEOWNERs
- Update cheatsheets-remastered extension (#21376)
- Add publora extension (#21372)
- Update CODEOWNERs
- Update CODEOWNERs
- Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406)
- [cURL Extension] Add Windows Support (#21427)
- [Raindrop.io] Move @sh-cho to past contributors (#21435)
- [Update] [Things] Add project update/delete tools and improve type safety (#21416)
- Update obsidian-link-opener extension (#21443)
- Update zed-recent-projects extension to use latest sqlite Zed schema (#21180)
- Fix Jira extension: JQL error (#21429)
- Docs: update for the new API release
- Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370)
- Update github extension (#21381)
- Update docker extension (#21398)
- Update Advanced Replace for regex transforms and entry options (#21409)
- Update deepwiki extension (#21400)
- Update meta-music extension (#21417)
- Update CODEOWNERs
- Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421)
- Update instagram media downloader extension (#21422)
- Update CODEOWNERs
- Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349)
- Update CODEOWNERs
- Add red-note-post-viewer extension (#21315)
- Fix documentation for screenshot extension: capture-to-clipboard command (#21311)
- Update flibusta-search extension (#21327)
- Mention Forked Extensions in dev doc (#21158)
- Update CODEOWNERs
- Fix todoist extension: Setting due date and time (#21331)
- Update CODEOWNERs
- Add plexus extension (#21289)
- Update CODEOWNERs
- Add r2-uploader extension (#21215)
- Cursor Agents: Add a new tool to get back all repositories that are s… (#21337)
- Update CODEOWNERs
- [cursor-agents] Made `ref` optional in the agent launch form (#21334)
- Cursor: Few smaller fixes (#21333)
- Add error handling for launchCommand (#21332)
- Update CODEOWNERs
- Cursor Agents (#21328)
- Update CODEOWNERs
- Update memos extension (#21213)
- Release more extensions on Windows (#21324)
- Update CODEOWNERs
- Update google-chrome extension (#21235)
- Add lockfiles and registry rules to copilot instructions (#21254)
- docs: update documentation (#21325)
- Update CODEOWNERs
- [Gandi] New Extension (#21120)
- Update RAE Dictionary extension with latest improvements (#21307)
- Update CODEOWNERs
- Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322)
- Update zeabur extension (#21321)
- Update CODEOWNERs
- Add music-assistant-controls extension (#21249)
- Update CODEOWNERs
- Add ChartMogul extension (#21251)
- [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623)
- Fix incorrect error message in GitHub Enterprise issues search (#21231)
- Update CODEOWNERs
- Add hebrew-date-zmanim extension (#21292)
- Update CODEOWNERs
- Add atomberg-raycast-extension extension (#21185)
- Improve error handling in GitHub Copilot extension (#21308)
- feat(add-expense): Add "Category" selection dropdown to "Add…
damian-duchnowski added a commit to damian-duchnowski/raycast-extensions that referenced this pull request Jan 6, 2026
- Merge branch \'contributions/merge-1767727274647\'
- Pull contributions
- feat(parcel): improve internationalization and display carrier names
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Update CODEOWNERs (55e95f23)
- Update nixpkgs-search extension (#22931)
- Update CODEOWNERs (cca37789)
- Update remember-the-date extension (#23145)
- Update CODEOWNERs (dd22446b)
- Update google calendar quickadd extension (#23127)
- [Firefly III] fix api content type handling (2 line fix) (#23158)
- Update CODEOWNERs (b3dcbb11)
- Update odesli extension (#23159)
- Update CODEOWNERs (6c2f1077)
- Add meteoblue-lookup extension (#23027)
- Update `Spaceship` extension - check domain availability (new command) (#23150)
- Fix crash when chatbot is missing styles or button_color (#23000)
- Update CODEOWNERs (33e6a9ae)
- Docs: update for the new API release
- Add accordance extension (#22632)
- Update real-calc extension (#23149)
- Update CODEOWNERs (21d7e0dc)
- Update visual-studio-code extension: Support Antigravity (#23018)
- Update CODEOWNERs (4ac61687)
- Change GitHub username for loic_magnette (#23148)
- Update CODEOWNERs (af65e40e)
- Update pretty-pr-link extension (#22979)
- Update cnpj-lookup extension (#23140)
- Update CODEOWNERs (1d8bf9ea)
- Update rg-adguard-links extension (#23135)
- Update pr-bot.ts (#23138)
- Update CODEOWNERs (f8b05ecb)
- Add launchpad-plus extension (#22422)
- Update CODEOWNERs (c0a80804)
- google-calendar open events conference uri if one exists #22668  (#22711)
- Update CODEOWNERs (282cee00)
- Update jitsi extension (#22881)
- Update CODEOWNERs (4ec28947)
- Extention: currency-exchange (#22659)
- Update CODEOWNERs (aa2321ff)
- Update font-awesome extension (#23130)
- Update prism-launcher extension (#23122)
- Update CODEOWNERs (533cf745)
- Extensions/rg adguard links (#22875)
- Update vmware-vcenter extension (#23114)
- Updated WebBites extension (#22994)
- Update uploadthing (#22782)
- Update CODEOWNERs (2b766e44)
- Add flutter-utils extension (#21854)
- Update CODEOWNERs (ecfd141a)
- Fix `change-scroll-direction` extension for MacOS Tahoe 26 and above (#22445)
- Update CODEOWNERs (366e75b5)
- Add manifest-viewer extension (#23110)
- Update CODEOWNERs (b562c585)
- [ChatGPT Atlas] fix crash when not installed (#23104)
- Update CODEOWNERs (e9068e14)
- Add djangopackages extension (#22896)
- Update CODEOWNERs (43034549)
- Update fotmob extension (#21723)
- Update CODEOWNERs (7a948f82)
- Update rename-images-with-ai extension (#23097)
- [Envato] Fix issue where "accountEnvato" would crash on first run due to missing cache + more (#23072)
- Update git-assistant extension (#23026)
- Webbites: Update deps (#23105)
- Update raycast-ollama extension (#23042)
- feat: use updated `sv` command for cli composer (#23054)
- Update display-reinitializer extension (#23066)
- Update harvest extension (#23087)
- Update CODEOWNERs (a272c261)
- Update shadcn-ui extension (#23017)
- Update CODEOWNERs (177df164)
- [Toggl-track] Add windows support (#23048)
- Update CODEOWNERs (aa6ab4b3)
- Update `Workflowy Inbox` extension - Windows + Modernize + Retitle + fix 2 errors + View Nodes (#23101)
- Update CODEOWNERs (f4f87792)
- Add maxly-chat extension (#22899)
- Update CODEOWNERs (dfedb308)
- Update markdown-codeblock extension (#23040)
- Update CODEOWNERs (f80274b8)
- Add atlassian-data-center extension (#22223)
- Update CODEOWNERs (d53d5f3a)
- Update remove-paywall extension (#22927)
- Fix notification URLs for GitHub Enterprise Cloud (#22888)
- Update CODEOWNERs (2eaefad7)
- Add prisma-postgres extension (#23020)
- Update CODEOWNERs (90d87577)
- Update karakeep extension (#22803)
- Update CODEOWNERs (6d18bfe0)
- Update team-time extension (#22882)
- Update CODEOWNERs (f4e821c1)
- Update punto extension (#22989)
- Docs: update for the new API release
- Update CODEOWNERs (8664d429)
- feat(slack): add "Copy ID to Clipboard" action to the "Open Channel" command (#22999)
- Update CODEOWNERs (542293af)
- Add za-fake-id-number-generator extension (#22841)
- Update CODEOWNERs (90a48785)
- Add ishader extension (#22722)
- Update CODEOWNERs (04025537)
- Add antigravity extension (#23007)
- [Dashlane-Vault] Improve error feedback (#22988)
- Update CODEOWNERs (35dcb350)
- [IMDB] add windows keeb shortcut to ActionOpenParentalGuide (#23002)
- Update CODEOWNERs (ce39b9da)
- Update twos post extension (#23003)
- Update CODEOWNERs (84c8fd75)
- Update papago-translate extension (#22699)
- Update CODEOWNERs (d3206b90)
- feat: Add preference to open iTerm in a new window or tab for the "Open iTerm Here" command (#22960)
- Update CODEOWNERs (14975d4c)
- Better search for remote items (#22959)
- [United Nations] Routine maintenance (#22955)
- Update CODEOWNERs (558b1625)
- [Visual Studio Code Extension]: Add Windows Support (#22108)
- Update CODEOWNERs (f5310078)
- Update macosicons extension (#22963)
- Update github extension (#22965)
- Google Calendar: Update check for internal flavor (#22951)
- [World Clock] Add Windows support (#22274)
- Support Google Calendar on Windows (#22945)
- Update scheduler extension (#22476)
- Update tududi extension (#22938)
- Update logos-launcher extension (#22939)
- feat(mcp-registry): update nuxt mcp server url (#22865)
- Update CODEOWNERs (8f56211e)
- Update google-chrome extension (#22926)
- Update CODEOWNERs (a390ca22)
- Add kalshi extension (#22776)
- Update CODEOWNERs (0ee96955)
- Add port-from-project-name extension (#22312)
- Add AUP link to README.md (#22935)
- Google Calendar: Make compatible for internal build on Windows (#22932)
- Update CODEOWNERs (142e4b77)
- Update kagi search extension (#22921)
- Update CODEOWNERs (0273e950)
- Update type-snob extension (#22925)
- Update CODEOWNERs (7d5913a5)
- Add `Featurebase` extension (#22891)
- Update CODEOWNERs (e634a895)
- Update `LLMs Txt` add Windows support (#22900)
- Update `n8n` extension - fix crash when invalid URL (show EmptyView) (#22917)
- Update CODEOWNERs (3b6e10f2)
- Update can-i-use extension (#22923)
- Update bitbucket extension (#22836)
- Add AI assistant tooling to Raindrop.io extension (#22908)
- Update excel-formula-beautifier extension (#22871)
- [Groq] Update models (#22902)
- [Chatwoot] fix msg crash when no sender name (one line fix) (#22919)
- Update CODEOWNERs (a4d9e687)
- Forked extensions windows cloning error when user folder has space (#22914)
- Update `Appwrite` extension - fix users + copy id + add sort order (#22890)
- Update CODEOWNERs (d1dd3af2)
- Update installed extensions extension (#22895)
- Update vps-explorer extension (#22863)
- Update 1password extension (#22877)
- Add screenshots for WebBlocker extension (#22893)
- Update CODEOWNERs (8ee1662a)
- Update type-snob extension (#22876)
- Update CODEOWNERs (8e373817)
- Add `Immich` extension - Explore + Library + API Keys (#22884)
- Update wechat-devtool extension (#22886)
- Update CODEOWNERs (dac38da6)
- Add WebBlocker extension for productivity and focus (#22715)
- Update CODEOWNERs (4c92abd3)
- Spotify Player - Add Windows support (#22759)
- Update CODEOWNERs (bb38e635)
- Add yasb extension (#22555)
- Update toolbox extension (#22527)
- Update CODEOWNERs (2ce02087)
- Add winscp extension (#22012)
- Update CODEOWNERs (4bb8c1d8)
- Add ports extension (#21729)
- [Home Assistant] Replace deprecated attribute and fix related commands (#22870)
- Update CODEOWNERs (e7d3e1f4)
- Update cratecast extension (#22720)
- Update CODEOWNERs (967888a4)
- Add qalc extension (#21937)
- Update CODEOWNERs (6a294cab)
- Add eurovision-song-contest extension (#22866)
- [NetNewsWire] fix articles not loading (#22864)
- Update CODEOWNERs (77629198)
- Update library-genesis extension (#22869)
- Update CODEOWNERs (82d7e681)
- Add drug-search extension (#22860)
- Update CODEOWNERs (b30fad64)
- Add httpperf extension (#22809)
- Update CODEOWNERs (a1b96be6)
- Add git extension (#22550)
- Update CODEOWNERs (9c354083)
- Add logos-launcher extension (#22366)
- Update CODEOWNERs (792ccbdc)
- Add crypto-portfolio-tracker extension (#22516)
- Update CODEOWNERs (7c738cc5)
- chore: update github username (#22634)
- Update CODEOWNERs (20093698)
- feat(screenocr): add option to disable sound and toast message (#22559)
- feat: Vision Support with Pixtral Models and Clipboard Integration (#22724)
- Update CODEOWNERs (76861a76)
- Update deepcast extension (#22830)
- Update CODEOWNERs (4e55cf4b)
- [Sink] windows support + shortcuts + modernize (#22850)
- chore(sdk-scw): migrate to new sdk (#22777)
- Improve regex pattern used for Jira issue key detection (#22833)
- Update freeagent extension (#22818)
- Update CODEOWNERs (0fe6eb9d)
- [JWT Decoder] Update dependencies (#22411)
- Update CODEOWNERs (05e17791)
- Add grokipedia extension (#22519)
- Update CHANGELOG.md (#22832)
- [VLC] Add commands for speed and history (#22800)
- Update CODEOWNERs (630baf92)
- Update search-router extension (#22823)
- Update CODEOWNERs (660ff273)
- Add excel-formula-beautifier extension (#22578)
- Update CODEOWNERs (f46e7f57)
- Add json-resume extension (#22499)
- Update vps-explorer extension (#22819)
- Update CODEOWNERs (fae2c295)
- Update prism-launcher (#22801)
- Update CODEOWNERs (6c53c0e4)
- Update video-downloader extension (#22810)
- Update CODEOWNERs (b4006be0)
- Add vps-explorer extension (#22507)
- [Ligue-1] Update extensions (#22806)
- Update `Coolify` extension - delete project (new action) (#22794)
- Update CODEOWNERs (f6d7e481)
- Add `Firefly III` extension (#22795)
- Update CODEOWNERs (cfb46f57)
- Add AI by vercel extension (#22804)
- Update review expectations message in pr-bot (#22734)
- Change fetch URL and parse frontend version (#22751)
- Update CODEOWNERs (61c928e3)
- fix(extension): fix zen-browser opening new tab in private window in windows (#22767)
- Update raycast-zoxide extension (#22775)
- Update browser bookmarks extension (#22778)
- Update CODEOWNERs (5898b655)
- Add rule-of-three extension (#22773)
- Update twitch (#22770)
- Update fathom extension (#22760)
- [Postiz] v2 month till EoM + posts in markdown (#22774)
- Update CODEOWNERs (ad1c8665)
- Update twitch (#22746)
- Update CODEOWNERs (584953d5)
- Add Shelve extension (#22287)
- Update CODEOWNERs (342955a0)
- Add ray-code extension (#22755)
- Update qbittorrent (#22756)
- Update CODEOWNERs (c282ff17)
- Update uploadthing (#22763)
- Update cloudflare-warp extension (#22765)
- Update CODEOWNERs (38c5ec83)
- Add `Papra` extension (#22761)
- Update CODEOWNERs (ba06e8c4)
- add: Orshot extension (#21715)
- [ivpn] minor fix: error handling in logout command (#22757)
- Update CODEOWNERs (977815a6)
- Update steam (#22730)
- Update CODEOWNERs (52b198d4)
- feat(imessage-2fa): add support for the 2FA from Epos Card Japan (#22593)
- Update browser history extension (#22749)
- Update `Appwrite` extension - Show Sites, Deployments, Variables (#22754)
- [Multilinks] Add Perplexity Comet browser support (#21476)
- Update anna-s-archive extension (#22739)
- Update CODEOWNERs (fceb40cc)
- [ccusage] feat: enhance Node.js path resolution and CLI execution flexibility (#22740)
- Update silent-mode extension (#22738)
- Update CODEOWNERs (8101bc2b)
- AppGrid - Smart app launcher with grid view and category grouping (#22709)
- Update CODEOWNERs (c6c796f6)
- Add silent-mode extension (#22732)
- feat(ray-so): add nuxt theme preferences (#22733)
- Update CODEOWNERs (6de71ca1)
- Add pi-drill extension (#22714)
- Update CODEOWNERs (043ad9be)
- Update bitbucket extension (#22708)
- Update CODEOWNERs (57cbf4b9)
- Add ping-menu extension (#22299)
- Docs: Update the utils docs
- Update CODEOWNERs (d3ea74a2)
- Add udemy-coupons extension (#22713)
- Update CODEOWNERs (2dfb48e5)
- Update qbittorrent (#22728)
- Update CODEOWNERs (7c6269c0)
- Add dice-tiles extension (#22021)
- FuelX: Remove vulnerable, but unused, dependencies. (#22727)
- LingoRep: Fix security vulnerabilities. (#22726)
- Update CODEOWNERs (9a3fcb4e)
- Add zshrc-manager extension (#22314)
- Update CODEOWNERs (6f5ff619)
- Update parallels-virtual-machines extension (#22676)
- Update CODEOWNERs (a92f1b80)
- Add tex2typst extension (#22667)
- Update CODEOWNERs (dbdf4185)
- feat(sound-search): new extension for searching sounds 🎵  (#22590)
- Update skyscanner-flights extension (#22723)
- Update CODEOWNERs (19316773)
- Add rhttp extension (#22359)
- Update `Capacities` extension - Maintenance + Windows Support (#22694)
- Update CODEOWNERs (6f7ed842)
- Add `NetNewsWire` extension (#22717)
- [Chatwoot] search contacts + show unread convo count (#22719)
- Add Ghostty terminal support to Claude Code Launcher (#22706)
- Update knowyourmeme extension (#22705)
- Feature mistral medium (#22633)
- Update CODEOWNERs (10b7497d)
- Handle the search favourite space error (#22689)
- Update CODEOWNERs (85f8818e)
- Update timezone-buddy extension (#22652)
- Update CODEOWNERs (10af08bf)
- Extension: cloudflare (#22660)
- feat(chatgpt-search): Make query parameters configurable, simplify extension (#22677)
- Update CODEOWNERs (33834b75)
- Add prompt-builder extension (#22648)
- Update CODEOWNERs (aa910511)
- Add display-reinitializer extension (#22678)
- Update CODEOWNERs (2780fca6)
- Update messages extension (#22687)
- Update CODEOWNERs (cde25cb6)
- [gitignore] Windows Support and Favourites (#22623)
- Update CODEOWNERs (6e16a93d)
- [Google Search] Release for Windows (#22410)
- Update skyscanner-flights extension (#22686)
- Update jsr extension (#22682)
- Update CODEOWNERs (9b38b344)
- Update spell extension (#22657)
- Update CODEOWNERs (24aabfd6)
- [Adhan Time] Add Windows support (#22622)
- Update CODEOWNERs (2a668305)
- Update parcel extension (#22239)
- Update CODEOWNERs (5b5c73f4)
- Update idonthavespotify extension (#22695)
- Update CODEOWNERs (f7ae792c)
- [Search NPM Packages] Add Bun Support (#22697)
- Update CODEOWNERs (62749d70)
- Add skyscanner-flights extension (#22646)
- [Premier League] API Migration (#22631)
- Update svelte-docs extension (#22666)
- Update CODEOWNERs (d9f76b0f)
- Update keyboard-shortcut-sequences extension (#22181)
- Docs: update for the new API release
- Ertembiyik/update punto (#22624)
- Update svelte-docs extension (#22650)
- Update CODEOWNERs (9894359b)
- Add `Grist` extension (#22655)
- Update CODEOWNERs (29553c07)
- Update `Pastefy` extension - add win support + 2 new create preference (close 2 issues) (#22656)
- feat(google-chrome): add exclude search functionality (#22614)
- Update CODEOWNERs (cc8a88c8)
- Update url parse extension (#22662)
- Update CODEOWNERs (92771db0)
- Add Tempo extension (#22643)
- Update svelte-docs extension (#22533)
- Update CODEOWNERs (977eb5e6)
- Add Copy Notion Markdown Link extension (#22523)
- Update prism-launcher extension (#22645)
- Update prism-launcher extension (#22526)
- Update CODEOWNERs (c8bea537)
- Add qrcp extension (#22524)
- Keeper Security Updated Readme file (#22642)
- Update currency-exchange extension (#22620)
- [ENS name lookup]: Fix the extension functionality (#22613)
- Update CODEOWNERs (6c3d489d)
- Update any-website-search extension (#22574)
- Update plane extension - README (#22636)
- Update CODEOWNERs (257ee845)
- Update delivery-tracker extension (#22577)
- Update roblox-creator-docs extension (#22538)
- Update plane extension - Support for Plane Self Hosted and API Key authentication (#22608)
- Update tembo extension (#22615)
- Update bible extension (#22606)
- Update `Koyeb` extension - paginate activities + app,service events (#22619)
- Update CODEOWNERs (42d77f5b)
- Add linkace extension (#22362)
- Update CODEOWNERs (e1f980ca)
- Add paperform extension (#22500)
- Update CODEOWNERs (cdfc8913)
- Update T3 Chat extension - Added new models (#22127)
- Update `Attio` extension - use official logo + add task (#22609)
- Update claude extension to dynamically retrieve models (#22217)
- Update CODEOWNERs (936310d4)
- Agent Client Protocol client implementation (#22140)
- Update some dependencies to fix some security issues (#22610)
- Update harvest extension (#22545)
- Update CODEOWNERs (b8c8fcd7)
- Update some deps to fix vunerability issues (#22546)
- Update discord-timestamps extension (#22554)
- Update Eagle extension (#22560)
- Update zed-recent-projects extension (#22562)
- Updated to Filament 4 (#21869)
- [Coolify] add Windows support (#22565)
- Fix: Compatibility with new Luna UI, Windows Support, Version Updates (#22575)
- Update `Resend` extension - use Node SDK  (#22572)
- Update CODEOWNERs (7a56bbe0)
- Update raindrop-io extension (#22552)
- Updated backend endpoints (#22568)
- Update swift-command extension (#22592)
- [Brand Icons] Routine maintenance (#22564)
- Update radarr extension (#22580)
- Update exif extension (#22542)
- Convert Media: add `Copy FFmpeg Command`, remove AVI CRF,... (#22549)
- Update `FreeDNS` extension - modernize + add windows support (#22536)
- Update plane extension README (#22548)
- Update kagi-news extension (#22539)
- Fix casing of \'Windows\' to \'windows\' in keyboard.md (#22540)
- Update CODEOWNERs (0a691228)
- Update timezone-buddy extension (#22349)
- Update reclaim-ai extension to include support for platform: Windows & fix bug with search tasks (#22460)
- Update CODEOWNERs (f4aad1fb)
- Add knowyourmeme extension (#22305)
- Update CODEOWNERs (53d4b505)
- Update gitlab extension (#22360)
- Update CODEOWNERs (7b1e59c4)
- Add kagi-news extension (#22389)
- brew: Change "formula" to "formulae" (#22518)
- Update CODEOWNERs (257af696)
- Add string-formatter extension (#21859)
- Update CODEOWNERs (2a0fab28)
- Add helium extension (#22290)
- feat(markdown-codeblock): add newline prefix (#22369)
- Update CODEOWNERs (b20058a1)
- Docker/add windows support (#22455)
- Add Windows platform support (#22453)
- Update CODEOWNERs (aa68611f)
- Add xkcd-password-generator extension (#22433)
- Update CODEOWNERs (8bf2a9d9)
- Add Stagehand extension (#22179)
- Update CODEOWNERs (59d237b7)
- Add micro-snitch-logs extension (#22390)
- Update CODEOWNERs (238052ee)
- Update github extension (#22384)
- Docs: Update the utils docs
- Update CODEOWNERs (42e307ec)
- Add ivpn extension (#22149)
- Add Pagination to List of Playlist Songs (#22145)
- [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512)
- Update figma-files-raycast-extension extension (#22254)
- Update prism-launcher extension (#22458)
- Update unicode-symbols extension (#22510)
- Update jsr extension (#22503)
- Update CODEOWNERs (0fd5ad08)
- Add keeper-security extension (#22296)
- Update filemaker-snippets extension (#22509)
- Update CODEOWNERs (e858971c)
- Add paynow extension (#22380)
- [ipapi.is] fix error when some location field is invalid (#22493)
- Update CODEOWNERs (ccfa9932)
- Update zen-browser extension (#22491)
- Update tembo extension (#22471)
- Delete .github/workflows/add-approve-label.yml (#22501)
- Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490)
- [Linear] Use API-provided notification presentation (#22285)
- Update CODEOWNERs (1a7209ee)
- Update harvest extension (#22256)
- Update CODEOWNERs (13787cdf)
- Fix finding button in Tahoe. (#22330)
- Update GitHub Actions workflow for PR approvals (#22487)
- Docs: update for the new API release
- Update CODEOWNERs (77f64775)
- Added support for Asana sections (#21912)
- Update auto-label workflow for PR approvals (#22484)
- Update GitHub Actions workflow to set effective token (#22482)
- Update workflow to use pull_request_review event (#22479)
- Update CODEOWNERs (d5727aab)
- Add action to generate and copy private links (#22273)
- Enhance PR approval labeling workflow (#22477)
- Chatgpt atlas bookmarks improvement (#22371)
- Add windows support  (#22367)
- Update diskutil-mac extension (#22307)
- [Secret Browser Commands] add ChatGPT Atlas, etc (#22348)
- Update deployhq extension (#22319)
- [Serie A] Update extensions (#22427)
- Update CODEOWNERs (a0f6527b)
- Update arc extension (#22272)
- Update CODEOWNERs (82962ede)
- Add file-info extension (#22259)
- [LaLiga] Update extensions (#22452)
- Update CODEOWNERs (9f49ac17)
- Update jotoba extension (#22379)
- Update capture fullpage of website extension (#22392)
- Update CODEOWNERs (9eeb19ae)
- Add `Formizee` extension - The Open-Source Forms Platform (#22281)
- Update CODEOWNERs (3878eb92)
- [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300)
- Add `Sevalla` extension  (#22407)
- Update CODEOWNERs (c4582cbb)
- Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432)
- Update CODEOWNERs (04f103bd)
- Update google tasks extension (#22439)
- Update CODEOWNERs (1e072cd8)
- feat: add KeePassXC entry placeholder support (#22357)
- Update ton-address extension (#22370)
- [Postiz] Fix Creation Failing + Post Enhancements (#22372)
- Update comet extension (#22381)
- Update CODEOWNERs (291204ff)
- [Random] Update dependencies, release for Windows (#22353)
- Update CODEOWNERs (eeb3d87a)
- Update capture fullpage of website extension (#22304)
- Update CODEOWNERs (5204e8d4)
- Add `HomeBox` extension - A simple home inventory management software (#22264)
- Update docklock-plus extension (#22240)
- Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311)
- Update CODEOWNERs (7385f9dd)
- Update paste as plain text extension (#22328)
- Update CODEOWNERs (0ad576af)
- Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324)
- Update CODEOWNERs (f28be428)
- Update browser bookmarks extension (#22343)
- Update CODEOWNERs (85c4dc01)
- Update chatgpt atlas extension (#22351)
- Update CODEOWNERs (2468906f)
- Add ChatGPT Atlas extension (#22340)
- Docs: update for the new API release
- Update nightscout extension (#22293)
- Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276)
- Update CODEOWNERs (a2bc7743)
- Add wled-controller extension (#22258)
- Update CODEOWNERs (12a75181)
- Update jetbrains extension - Add Support for Toolbox V3  (#22265)
- Update CODEOWNERs (3c3bfba8)
- Add fathom extension (#22187)
- Update youtube extension (#22250)
- Update CODEOWNERs (2ddb7251)
- Update fetch youtube transcript extension (#22220)
- docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246)
- Update kimai extension (#21809)
- Update multiple extensions to address security vulnerabilities. (#22241)
- Update linkding extension (#22231)
- Update CODEOWNERs (f24e76f7)
- Add http-observatory extension (#22219)
- Update dig extension (#22213)
- Update CODEOWNERs (4dd7c9d8)
- Update apple-reminders extension (#22182)
- Update CODEOWNERs (6336d869)
- Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232)
- Update CODEOWNERs (f7242a65)
- Update nhl extension (#22237)
- Update CODEOWNERs (6d84bbb2)
- Update obsidian-tasks extension (#21863)
- Update harvest extension: Add favorites command (#22210)
- Update CODEOWNERs (e8d487be)
- Add tududi extension (#22165)
- Update raycast-zoxide extension (#22218)
- Update CODEOWNERs (00c88e12)
- Update cheatsheets extension (#22226)
- New Feature: Bootstrap Icons: AI Search Fallback (#22221)
- Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214)
- feat(nuxt): add Windows compatibility (#22209)
- Update CODEOWNERs (4e5503af)
- Add forscore extension (#22204)
- tabler: handle pagination/search APIs (#22189)
- Update CODEOWNERs (72e0c46f)
- Update plane extension (#22198)
- Update CODEOWNERs (a15e7275)
- Add haystack extension (#22052)
- Update zed-recent-projects extension (#22199)
- things: fix timeout on macOS Tahoe (#22193)
- macosicons: enhance error handling with detailed troubleshooting (#22192)
- feat(nuxt): v2.1.0 (#22104)
- [Bitwarden] Add Windows support (#21940)
- Update CODEOWNERs (0d47291d)
- Update instant-domain-search extension (#22081)
- Update CODEOWNERs (a006b143)
- Update time-machine extension (#22045)
- Update base-stats extension (#21710)
- Update CODEOWNERs (88cf72d9)
- Update contributors (#22175)
- Add Bootstrap Icons extension (#22190)
- Update CODEOWNERs (9e13279b)
- Add edgestore-raycast extension (#22117)
- Update CODEOWNERs (a82922ec)
- New Extension: Metacritic (#21588)
- Update dust-tt extension (#22167)
- [1Password] Adopt the latest extension template (#22109)
- Update CODEOWNERs (b1b36e04)
- Kaomoji Windows Support (#22158)
- Update CODEOWNERs (21f635c6)
- Update changedetection-io extension (#22126)
- Update CODEOWNERs (7aa198cb)
- [IPInfo] Release for Windows (#22075)
- Update threads extension (#21962)
- Update search-npm extension (#22153)
- Update CODEOWNERs (0f83c147)
- Update deployhq extension (#22151)
- Update anna-s-archive extension (#22156)
- Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155)
- fix(keepassxc): retrieve keepassxc app location. (#22073)
- Update bible extension (#22157)
- Update CODEOWNERs (10372204)
- Add serialcast extension (#21795)
- Update CODEOWNERs (b25f5e83)
- Add yazio-tracker extension (#21954)
- Update bible extension (#22112)
- Update grammaring extension (#22113)
- Update CODEOWNERs (e100bc12)
- Update toggle-fn extension (#22130)
- Update CODEOWNERs (1f62a06f)
- [Linear] Schema deprecation and update SDK (#22095)
- Update CODEOWNERs (576ae0c4)
- Update jwt-decoder extension (#22088)
- Update duckduckgo-image-search extension (#22064)
- Update CODEOWNERs (1869fd16)
- Add deployhq extension (#21902)
- Update CODEOWNERs (e46aede5)
- Add bahn-info extension (#21492)
- Update howlongtobeat extension (#22120)
- Update CODEOWNERs (dfa9df71)
- feat: add massCode assistant (#21851)
- Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143)
- Update CODEOWNERs (14d29e47)
- Add planning-center-api-docs extension (#22029)
- Update CODEOWNERs (df7f1aca)
- Update font-awesome extension (#22085)
- Update google-chrome extension (#22074)
- Update unicode-symbols extension (#22103)
- Update CODEOWNERs (1c08b627)
- [Twitter] Modernize + fix smol controlled form thingy (#21767)
- feat(bento-me): add Windows support. (#22119)
- [Plane] fix crash due to different logo response (#22146)
- Update CODEOWNERs (cc8cf75b)
- Update `Plane` extension - search projects & view their work items + filter work items  (#22106)
- Update CODEOWNERs (187ad3c6)
- Update hackmd extension (#22035)
- Update CODEOWNERs (9befbb8b)
- Update base64 extension (#21507)
- [MapleStory.gg] Add support for Windows (#22086)
- Update CODEOWNERs (8d7ab8d0)
- Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102)
- [RICE Score] Port to Windows (#22118)
- [Snake] Add Windows support (#22105)
- [Brand Icons] Routine maintenance (#22087)
- Update CODEOWNERs (da27c425)
- Add `Chatwoot` extension (#22116)
- Update CODEOWNERs (1e28965f)
- update information & a small fix (#22137)
- Add lapack-blas-documentation-search extension (#22031)
- kim/fix/youtube transcripts (#22067)
- Update scheduler extension (#22003)
- Update unicode-symbols extension (#22066)
- Update zeabur extension (#22062)
- Update CODEOWNERs (ac316560)
- Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065)
- Update CODEOWNERs (3a9d22a1)
- Update sesh extension (#21914)
- Set Due Date to Everyday for Existing Tasks (#22058)
- Update CODEOWNERs (049667a3)
- Update duckduckgo-image-search extension (#21953)
- Update numpy-documentation-search extension (#22020)
- Update CODEOWNERs (7d895075)
- Add instant-domain-search extension (#21871)
- Update CODEOWNERs (ed57125e)
- Add fakecrime-upload extension (#22010)
- Update CODEOWNERs (92d1043d)
- Add plane extension (#21879)
- [RSS Reader] AI enhanced rss-reader extension (#22000)
- Update CODEOWNERs (e4687ae8)
- Add clean-text extension (#20988)
- Update CODEOWNERs (99f287ce)
- Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155)
- Update CODEOWNERs (fdc83ab6)
- Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702)
- Update CODEOWNERs (24d2d377)
- feat(search-router): add custom search engine support (#21714)
- Update sportssync extension (#21970)
- Update CODEOWNERs (f31f0658)
- Update zen-browser extension (#21556)
- linear: add status preference to create issue for myself (#21959)
- Update CODEOWNERs (061fee85)
- Add ipinfo extension (#21991)
- Update `Postiz` extension - support v2 endpoint + toggle display (#22044)
- Fix: Address recipe fetching bug (#22033)
- Update CODEOWNERs (32769831)
- Update CT-7567 username in raycast2github.json (#22050)
- Refactor reviewer permission check in workflow (#22041)
- Update some deps to solve vulnerabilities (#22040)
- Update CODEOWNERs (573ea59e)
- Fix some security warnings (#21921)
- [United Nations] Add support for Windows (#22032)
- [Installed Extensions] Add support for Windows (#22036)
- Implement comment creation and updating for PR bot (#22037)
- Decommission Clarify Raycast extension. (#22034)
- Docs: update for the new API release
- Refactor platform label handling in PR bot (#22016)
- Implement platform detection for extensions (#22014)
- Update CODEOWNERs (dd22780a)
- Add near-rewards extension (#21917)
- Update CODEOWNERs (5bcb18d9)
- Add toneclone extension (#21701)
- [dust] feat(login): auto-switcher for user region (#21668)
- Update CODEOWNERs (a97cef3c)
- Add alloy extension (#21849)
- Update CODEOWNERs (0fa6b009)
- [Bitwarden Vault] Add a command to create a login (#21360)
- Update CODEOWNERs (10274f0e)
- Add numpy-documentation-search extension (#22013)
- Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935)
- Update CODEOWNERs (bdd2960d)
- Update datetime format converter extension (#21707)
- Update CODEOWNERs (8f7b8b7b)
- Add `Infisical` extension (#21880)
- Update CODEOWNERs (f3417a17)
- Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963)
- add issue type to templates (#22005)
- Update CODEOWNERs (ce65697d)
- Add guitar-tools extension (#21855)
- Update CODEOWNERs (27cae3f6)
- Add shopify-dev-docs-search extension (#21694)
- Update CODEOWNERs (9433c5d4)
- Update comet extension (#21945)
- [epim] Add automatic role status refresh after activation (#22008)
- [raycastbot] Add support for closing issues as duplicate (#21548)
- Update CODEOWNERs (4356e0bd)
- Update `Kaomoji Search` extension - Windows Support + Modernize (#21976)
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66d)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c9)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7de)
- Add airsync extension (#21903)
- [Say] Add Stop Say command & enhancements (#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (#21995)
- Updated WebBites extension (#21987)
- Enhance label addition workflow with debug info (#21990)
- Update add-approve-label.yml (#21989)
- Update reviewer type and token handling in workflow (#21988)
- Refine auto-labeling for approved PRs (#21986)
- Update add-approve-label.yml (#21984)
- Update add-approve-label.yml (#21983)
- Update add-approve-label.yml (#21982)
- Update add-approve-label.yml (#21981)
- Update add-approve-label.yml (#21980)
- Update add-approve-label.yml (#21979)
- Rework of fuzzy-file-search extension (#21675)
- Update add-approve-label.yml (#21977)
- Update add-approve-label.yml (#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974)
- Update CODEOWNERs (45a587fb)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e589)
- Add security-search extension (#21711)
- Improve video filename handling and update dependencies (#21958)
- [Grafana] add command Pages (#21952)
- Fix formatting in generate-code-owners.yml (#21951)
- Update CODEOWNERs (070fbee8)
- Implement fallback for core dirs and key files checkout (#21950)
- Refactor sparse checkout and improve Slack notifications (#21949)
- Enhance sparse checkout and improve commit message (#21947)
- Update qrcode generator extension (#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555)
- [Trello] Allow for multiple assignees on card (#21512)
- Update messages extension (#21939)
- Update stripe extension (#21943)
- Update generate-code-owners.yml for sparse-checkout (#21925)
- Add comma-separator extension (#21749)
- Add gomander extension (#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918)
- Add supermemory extension (#21811)
- Add nepali-calendar extension (#21708)
- Add folder-organizer extension (#21575)
- Update github extension (#21742)
- [Logseq] Windows support (#21705)
- add an extra space for reward text (#21905)
- Add uranium-raycast-plugin extension (#21501)
- Update 1password extension (#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706)
- [Raindrop.io] open in 2ndary browser + modernize (#21748)
- feat: enable windows support (#21739)
- Update plexus extension (#21894)
- Add hemolog extension (#21733)
- Add `Koyeb` extension (#21891)
- Update genius-lyrics extension (#21678)
- Update battery-health extension: add adaptor power watts (#20966)
- feat: Update YouTube transcript functionality (#21868)
- [Bitbucket] Swap to API tokens (#21489)
- Update aws extension (#21688)
- Update code-runway extension (#21662)
- Add claude-code-launcher extension (#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (#21790)
- Update bilibili extension (#21703)
- Update Ext/surge outbound switcher (#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835)
- Update aave-search extension (#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816)
- feat(KeePassXC): add windows support. (#21785)
- Update onbo extension (#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (#21734)
- [Pipedrive] fix issue + lots of changes (#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (#21840)
- Update arc extension (#21821)
- [video-downloader] Fix long video name issue (#21839)
- [Playnite Launcher] Fix cold starting issue (#21827)
- Add razuna extension (#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (#21804)
- Update gif search extension (#21834)
- Improve Sesh List (#21805)
- Update tembo extension (#21810)
- Update duan-raycast-extension extension (#21836)
- [Forked Extensions] Add support for checking aheads & branches (#21838)
- Update svgl extension (#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (#21726)
- [JSONtoTS] Add Windows Support (#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (#21770)
- feat(nuxt): update to nuxt ui v4 (#21762)
- Updated Wordflow (#21753)
- Update CODEOWNERs
- Added WebBites extension (#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (#21562)
- Update CODEOWNERs
- Add nightscout extension (#21552)
- PPL: Fixed View Newspapers bug (#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (#21695)
- Update CODEOWNERs
- Update parcel extension (#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (#21687)
- Add platforms support to package.json for windows and linux (#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667)
- Update static-marks extension (#21428)
- Update gitlab extension (#21670)
- Update how long to beat extension (#21671)
- Update Google Calendar Quickadd (#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654)
- Update hue palette extension (#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553)
- Added version switcher to Statamic Docs extension (#21620)
- Update CODEOWNERs
- Add ip-finder extension (#21543)
- Migration for 1.103.0 and Windows docs (#21652)
- Update granola extension (#21629)
- Update CODEOWNERs
- Add Raycast FRC (#21390)
- Update unicode-symbols (#21641)
- [Playnite Launcher] Support for portable versions & fixes (#21622)
- Update duan-raycast-extension extension (#21626)
- [Forked Extensions] Fix incorrect content for copying (#21635)
- Zed Recent Projects - fix broken pinned cache (#21608)
- Docs: update for the new API release
- Update CODEOWNERs
- Add simple-dictionary extension (#21456)
- Update CODEOWNERs
- `zen-browser`: Add Windows Support (#21600)
- Update CODEOWNERs
- Add swiss-train-times extension (#21522)
- Update CODEOWNERs
- Add onbo extension (#21551)
- Update zen-browser extension (#21414)
- Update CODEOWNERs
- Add share-a-quote extension (#21541)
- Update CODEOWNERs
- Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514)
- [OCI] List NoSQL + Manage Object Storage (#21572)
- Update CODEOWNERs
- Update remember this extension (#21367)
- Update debug package to version 4.4.3 (#21574)
- [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573)
- Docs: update for the new API release
- Update letterboxd extension (#21520)
- Update react-native-directory extension (#21544)
- [Xcode] Update assets to match Xcode 26 (#21525)
- Enhance PR workflow with merge and branch deletion (#21568)
- [Forked Extensions] Fix the infinite rerender (#21566)
- Update CODEOWNERs
- Update zed-recent-projects extension (#21528)
- Add google-calendar-quickadd extension (#21191)
- Update CODEOWNERs
- Add fuzzy-file-search extension (#21270)
- Update CODEOWNERs
- Update the dependencies to fix search history and search tabs (#21487)
- Add acceptance flags for winget installation (#21539)
- Update CODEOWNERs
- [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547)
- Update CODEOWNERs
- Add ai-stats extension (#21480)
- Update CODEOWNERs
- Update uuid generator extension (#21490)
- Update renaming extension (#21554)
- Update CODEOWNERs
- Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560)
- [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563)
- Make sure the migrations are cross-platforms (#21516)
- Update CODEOWNERs
- Add playnite-launcher extension (#20407)
- Update CODEOWNERs
- Add everything-search extension (#20055)
- Update CODEOWNERs
- feat: [Video Downloader] Add Windows Support (#21411)
- Update CODEOWNERs
- Add scoop extension (#21177)
- Product Hunt: scraper + logger improvements (#21188)
- Update music-assistant-controls extension (#21510)
- Update CODEOWNERs
- [GitHub Copilot] Refactor data loading (#21511)
- Add tembo extension (#21366)
- Update CODEOWNERs
- Update qq-music-controls extension (#21466)
- Update CODEOWNERs
- Update rize-io-sessions extension (#21481)
- [Forked Extensions] Support migrating from full-checkout (#21488)
- Update CODEOWNERs
- Remove problematic airplay preference from audio-device extension (#21495)
- Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497)
- Menu bar command, new icons and more (#21431)
- feat: update Firecrawl extension to use v2 API (#21477)
- Fix formatting of Nuxt UI description (#21479)
- Add Nuxt UI entry to MCP registry (#21478)
- Update CODEOWNERs
- [Git repos] Fix worktree remotes (#21464)
- Update scheduler extension (#21472)
- Update CODEOWNERs
- Add xpf-converter extension (#21448)
- Update CODEOWNERs
- Update CODEOWNERs
- Add zendesk-admin extension (#20763)
- Add yr-weather-forecast extension (#21354)
- Update CODEOWNERs
- Add `Apify` extension - List Actors + List Runs (#21467)
- Update CODEOWNERs
- [Forked Extensionis] Run local Git commands before requesting APIs (#21457)
- Update circleback extension (#21459)
- [zed-recent-projects] Handle new sqlite database schema 28 (#21447)
- Fixed deprecated Jira API issue. (#21452)
- Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395)
- Update `Productboard` extension - View `Objectives` + Modernize (#21450)
- Update CODEOWNERs
- Stripe: add support for managing customers and subscriptions (#21135)
- Update CODEOWNERs
- [Font Awesome] Add Windows Support (#21433)
- Update CODEOWNERs
- Update arxiv extension (#21033)
- Update CODEOWNERs
- [YouTube Companion] Add Windows Support and bump dependencies (#21436)
- Update CODEOWNERs
- [Forked Extensions] Add support for create extensions (#21364)
- Add whentomeet extension (#20675)
- Update CODEOWNERs
- Add Circleback extension (#21391)
- Update CODEOWNERs
- update packages and add option to exit raycast after cleaning link (#21269)
- Update CODEOWNERs
- Add tuneblade extension (#21350)
- Update wechat-devtool extension (#21399)
- Update CODEOWNERs
- feat(KeepassXC): add windows support. (#21430)
- Add Qovery extension (#21255)
- Update CODEOWNERs
- Update raindrop-io extension (#21394)
- Update comet extension (#21362)
- Update CODEOWNERs
- Update cheatsheets-remaster…
keleus added a commit to keleus/raycast-extensions that referenced this pull request Jan 8, 2026
- [EasyVariable] Remove incoming arguments
- Pull contributions
- [EasyVariable] Remove incoming arguments
- Update CODEOWNERs (bd2601b)
- Add leader-key extension (raycast#24244)
- Update CODEOWNERs (b423fcb)
- Add math-functions extension (raycast#23259)
- [iTerm] Feature Request: Open Profile (raycast#23527)
- Enhance image optimization in pull request workflow (raycast#24112)
- Update CODEOWNERs (f550393)
- Add qoder extension (raycast#24010)
- Update CODEOWNERs (50dadb5)
- Add rust-docs extension (raycast#23891)
- Update CODEOWNERs (da96143)
- Update claude code launcher extension (raycast#24251)
- Update CODEOWNERs (40ab171)
- Update image-to-ascii extension (raycast#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (raycast#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (raycast#24172)
- Update CODEOWNERs (6f95a9a)
- Add Typst Universe extension (raycast#24160)
- Fix: Handle undefined devices array in DeviceList component (raycast#24103)
- Fix the missing logo from the community badge (raycast#23889)
- Update CODEOWNERs (69d11cf)
- Update spotify-player extension (raycast#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (raycast#24220)
- Update CODEOWNERs (1da5f1b)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (raycast#24167)
- [raycastbot] Improve Regex for issue-bot (raycast#23870)
- Update CODEOWNERs (bce8c3c)
- Update raindrop-io extension (raycast#23306)
- Update CODEOWNERs (54c7afb)
- Add luma extension (raycast#24208)
- Update CODEOWNERs (8b274da)
- Update fancy-text extension (raycast#24215)
- Update granola extension v2.0.0 (raycast#24132)
- Update word4you extension (raycast#24184)
- Update paste-to-markdown extension (raycast#24214)
- Update CODEOWNERs (ce08bf7)
- [Sourcetree] modernize + fix invalid path crash (raycast#23987)
- Update CODEOWNERs (e63733a)
- [Linear] upd8 shortcuts + upd8 readme (raycast#23960)
- Update CODEOWNERs (b112ed5)
- Update `Bitly` extension - list links by group + modernize (raycast#23943)
- Update CODEOWNERs (591045b)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (raycast#23977)
- Update CODEOWNERs (b71b3a6)
- [Installed Applications] make shortcuts cross-platform (raycast#23935)
- Update CODEOWNERs (1e602c1)
- [Google Chrome] fix infinite rendering bug in new tab (raycast#23934)
- Update CODEOWNERs (3ffbc00)
- Update `Terminal Finder` extension - error handling + Kitty support (raycast#23916)
- Update CODEOWNERs (0fdc450)
- [Toggl Track] fix toast error in menubar + modernize (raycast#23832)
- HomeBrew: add dependency formula filter (raycast#24116)
- Fix Window Walker Extension (raycast#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (raycast#24204)
- Update CODEOWNERs (551247d)
- Update `Vim Bro` extension - add to favs and filter by favs (raycast#23993)
- Update CODEOWNERs (8bbbe12)
- [cURL] fix valid POST fail + update more keyboard shortcuts (raycast#24089)
- Update CODEOWNERs (1e23157)
- Update genius-lyrics extension (raycast#22805)
- Fix memory issues: implement streaming file processing (raycast#24197)
- Update CODEOWNERs (c597e0e)
- Update Zoom extension (raycast#24086)
- Update CODEOWNERs (0536bc9)
- [Dice & Coin] custom dice + windows support (raycast#23895)
- Update vercast extension (raycast#23942)
- Update brave extension (raycast#23990)
- Update google-workspace extension (raycast#24006)
- [Shell] add option to edit executed command (raycast#24017)
- Update tldr extension (raycast#23887)
- Update logos-launcher extension (raycast#24169)
- Fix window-walker pin system persistence and toast messages (raycast#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (raycast#24174)
- Update CODEOWNERs (149ce06)
- Update browser tabs extension (raycast#24113)
- Update CODEOWNERs (03bcfa7)
- Update `Regex Tester` extension - Modernize (raycast#24150)
- Update `Supermemory` extension - remove memory + filter by project (raycast#24158)
- Update pulsemcp extension (raycast#23983)
- Update arc-helper extension (raycast#24131)
- Update logos-launcher extension (raycast#24152)
- Disk Usage: optimize disk space heap (raycast#24144)
- [Pokedex] Fix crash on missing localized move names (raycast#24162)
- Update CODEOWNERs (7199e94)
- Update flush-dns extension (raycast#24102)
- Fixed Regression and Cleanup in Delivery Tracker (raycast#24163)
- Update ray-code extension (raycast#24123)
- Update CODEOWNERs (3dc8fde)
- Add Window Walker Extension (raycast#24119)
- Update CODEOWNERs (d1082d1)
- Update virustotal extension (raycast#23886)
- Update odesli extension (raycast#23884)
- Update CODEOWNERs (6812410)
- Add `Kutt` extension (raycast#23864)
- Update ray-code extension (raycast#24036)
- feat: support custom pinned locally (raycast#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (raycast#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (raycast#24031)
- Update CODEOWNERs (4491754)
- Update wayback-machine extension (raycast#24009)
- Update rename images with ai extension (raycast#24051)
- feat: add list account emails (raycast#23922)
- Update raycast gemini extension (raycast#23966)
- Update CODEOWNERs (0b15d7e)
- Update gmail extension (raycast#24060)
- [Language Detector] Routine maintenance (raycast#24066)
- Update nusmods extension (raycast#24085)
- Update CODEOWNERs (baec645)
- Update bitwarden extension (raycast#23970)
- Update urban-dictionary extension (raycast#24018)
- [Raindrop.io] Add Quick Add Bookmark command (raycast#24019)
- Update CODEOWNERs (aacd55d)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (raycast#24021)
- Update CODEOWNERs (b198396)
- Update git commands extension (raycast#24030)
- Update pipedrive extension (raycast#23797)
- Update music-assistant-controls extension (raycast#22972)
- Update atlassian-data-center extension (raycast#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (raycast#23996)
- Update CODEOWNERs (d54cf18)
- Zed recent projects (raycast#22909)
- Update CODEOWNERs (f038c4b)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (raycast#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (raycast#23849)
- Update CODEOWNERs (fe2f990)
- Update qrcode-generator extension (raycast#23951)
- Update CODEOWNERs (7a91fed)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (raycast#23965)
- Update obsidian extension (raycast#23846)
- Update shortcuts-search extension (raycast#23865)
- Update sound-search extension (raycast#23873)
- Update google-workspace extension (raycast#23963)
- [Hue] Windows support (raycast#23917)
- [HetrixTools] fix crash in uptime monitors (raycast#23880)
- [TourBox] Fix broken API implementations (raycast#23888)
- [Badges] Add support for Windows (raycast#23910)
- Update fathom extension (raycast#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (raycast#23945)
- Update arc-helper extension (raycast#23941)
- Update CODEOWNERs (8b0d956)
- Update downloads-manager extension (raycast#23842)
- Update CODEOWNERs (d4300ad)
- [Dashlane-Vault] Add windows support (raycast#23685)
- Update iconify extension (raycast#23833)
- Update CODEOWNERs (1cf953d)
- Update webpage to markdown extension (raycast#23899)
- Update CODEOWNERs (601b565)
- Update domainr extension (raycast#23791)
- Update CODEOWNERs (88a7fa9)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (raycast#23885)
- Update CODEOWNERs (91631cb)
- Add `Fizzy` extension (raycast#23858)
- Update CODEOWNERs (f0b97b9)
- Add `cdnjs` extension - search libraries (raycast#23847)
- Update CODEOWNERs (9554651)
- Add `Zyntra` extension - Add Inboxes and view their emails (raycast#23845)
- Update CODEOWNERs (b503a26)
- Add `Infomaniak` extension - User Management + kDrive (raycast#23820)
- Update workflow configurations (raycast#23811)
- Update CODEOWNERs (21978a8)
- [Windows domain] Add Windows Domain Extension (raycast#23591)
- Update CODEOWNERs (98de97d)
- [Downloads Manager] Add Windows Support (raycast#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (raycast#23615)
- Update CODEOWNERs (8941e12)
- Add ArchiSteamFarm extension (raycast#23564)
- Update CODEOWNERs (d0e98bf)
- Add dtf extension (raycast#23262)
- Fix Todoist link in extension documentation (raycast#23778)
- Update CODEOWNERs (efae17d)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (raycast#23805)
- Update iconify extension (raycast#23796)
- Update url-editor-pro extension (raycast#23744)
- Update brave extension (raycast#23724)
- Update CODEOWNERs (5bc0e51)
- Add geoguesser extension (raycast#23305)
- Update CODEOWNERs (a163145)
- Add Remove Background extension (raycast#23359)
- Update `Umami` extension - Windows Support (raycast#23784)
- Improve text formatting preservation and Check Text Instant workflow (raycast#23795)
- Update CODEOWNERs (90cb3e8)
- Update upcoming-holidays extension (raycast#23771)
- Update CODEOWNERs (48118e6)
- Update finnish-dictionary extension (raycast#23772)
- Update CODEOWNERs (407998f)
- Add `Seafile` extension - search files (raycast#23785)
- Update google-workspace extension (raycast#23773)
- Update CODEOWNERs (f8ee725)
- Misc: Fix some security warnings (raycast#23766)
- Update CODEOWNERs (6a278bd)
- Add `Umami` extension (support self-host & cloud) (raycast#23747)
- Update CODEOWNERs (f84e493)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (raycast#23599)
- Update CODEOWNERs (7a87036)
- Update iconify extension (raycast#23760)
- Update whois extension (raycast#23765)
- Update CODEOWNERs (ba79058)
- Remove Authy extension (raycast#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760)
- Add aranet-co2-monitor extension (raycast#23463)
- Update CODEOWNERs (848a68d)
- Add Lazygit Keybindings extension (raycast#23544)
- Update imessage-2fa extension (raycast#23545)
- caching for last selected stations @ ns-nl-search ext (raycast#23659)
- Fix typo in grid.md (raycast#23716)
- fix(github): append target directory only when cloning to existing path (raycast#23741)
- Update awork extension (raycast#23735)
- Update CODEOWNERs (346350c)
- Update say extension (raycast#23745)
- Update paperform extension (raycast#22943)
- Update google-workspace extension (raycast#23743)
- Implement checkout instructions for Pull Requests (raycast#23740)
- Update CODEOWNERs (88245bc)
- Update forked-extensions extension (raycast#23612)
- Update CODEOWNERs (7d35102)
- Update netease-music extension (raycast#23200)
- Update CODEOWNERs (4b21729)
- Update lorem-ipsum extension (raycast#23673)
- Update CODEOWNERs (3ec994a)
- Speed up loading of thumbnails (raycast#23737)
- Update brew extension (raycast#23366)
- Update default-web-browser-manager extension (raycast#23726)
- Update CODEOWNERs (5b66631)
- Update tldr extension (raycast#23663)
- Update CODEOWNERs (36f5782)
- Update nmbs-planner extension (raycast#23704)
- Update CODEOWNERs (1384cfa)
- Update search-domain extension (raycast#23559)
- Update CODEOWNERs (9a1c8da)
- Update nasa extension (raycast#23672)
- Update CODEOWNERs (1bdd13d)
- Update archiver extension (raycast#23689)
- Update zeabur extension (raycast#23725)
- Update CODEOWNERs (350a98c)
- Update findnearby extension (raycast#23728)
- Update kill-process extension (raycast#23285)
- Add \'windows\' to supported platforms in package.json (raycast#23686)
- Update iconify extension (raycast#23717)
- Update Granola extension icon (raycast#23647)
- Update search router extension (raycast#23699)
- Update arc-helper extension (raycast#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c)
- Add NIF extension (raycast#23191)
- Update CODEOWNERs (70b1301)
- Update lorem-picsum extension (raycast#23618)
- fix(deepl): newlines in markdown (raycast#23619)
- Update roblox-creator-docs extension (raycast#23270)
- Update placeholder extension (raycast#23622)
- Update CODEOWNERs (6c72aa6)
- Update material-icons extension (raycast#23621)
- Update CODEOWNERs (73fa195)
- Update lucide-icons extension (raycast#23620)
- Update CODEOWNERs (29160b9)
- Update rdw-kentekencheck extension (raycast#23617)
- Update CODEOWNERs (e96a709)
- Update imgur extension (raycast#23611)
- Update CODEOWNERs (c0b85f9)
- Update iconify extension (raycast#23605)
- Update CODEOWNERs (a4d44a3)
- Update dicom extension (raycast#23584)
- Update CODEOWNERs (4a2a890)
- Update `Change Case` extension - use in fallback mode (raycast#23626)
- Update CODEOWNERs (f6ea068)
- Update clipboard-type extension (raycast#23008)
- [Disk Usage] Optimize disk space allocation (raycast#23661)
- Update ray-clicker extension (raycast#23566)
- Update CODEOWNERs (4f9aa33)
- Update obsidian extension (raycast#23609)
- Update capacities extension (raycast#23664)
- Fix memory issues in Project Code to Text extension (raycast#23692)
- Update CODEOWNERs (d3acd55)
- Update change-case extension (raycast#23634)
- Update CODEOWNERs (3128c83)
- Update days-until-christmas extension (raycast#23684)
- Update fotmob extension (raycast#23667)
- Update CODEOWNERs (0971e2f)
- Update Days to Chrsitmas (raycast#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (raycast#23666)
- Update CODEOWNERs (8f1e69f)
- Add Windows Terminal extension (raycast#22934)
- Update anytype extension (raycast#23604)
- Update tududi extension (raycast#23601)
- Gcloud (raycast#23613)
- Update CODEOWNERs (16c11c2)
- Update tldr extension (raycast#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (raycast#23625)
- Update CODEOWNERs (8a3c484)
- Update google-workspace extension (raycast#23656)
- Update CODEOWNERs (9435718)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (raycast#23635)
- Update CODEOWNERs (f903830)
- Adding my new extension to the Raycast Store (raycast#23201)
- Update CODEOWNERs (7dbf52b)
- Update `One Time Secret` extension - AI extension + Windows support (raycast#23636)
- Update CODEOWNERs (4606156)
- Update search router extension (raycast#23646)
- Update CODEOWNERs (2415142)
- Add catenary-raycast extension (raycast#23129)
- feat(nuxt): update extension to version 2.2.0 (raycast#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (raycast#23558)
- Update open graph extension (raycast#23596)
- Add Windows support for ChatGPT (raycast#23515)
- Update CODEOWNERs (2e35ec3)
- Added new functionality  (raycast#23431)
- Update CODEOWNERs (c8cfa2f)
- [shell] Added windows support (raycast#22993)
- Update CODEOWNERs (3ce983f)
- Add windows-default-wallpapers extension (raycast#22947)
- [Visual Studio Code] Add Windows support for VSCode (raycast#20940)
- Update qrcode generator extension (raycast#23597)
- Update tududi extension (raycast#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (raycast#23581)
- Update substack extension (raycast#23585)
- Update css-tricks extension (raycast#23587)
- Update composerize extension (raycast#23588)
- Update password-strength extension (raycast#23590)
- Update CODEOWNERs (64220ac)
- Update proxmox extension (raycast#23221)
- Update CODEOWNERs (6ed97d4)
- Update vercast extension (raycast#23372)
- Update CODEOWNERs (f50b2c6)
- Update graphcalc extension (raycast#23550)
- Update CODEOWNERs (0b4e294)
- MOCO: Add copy actions for project name and ID (raycast#23554)
- Update CODEOWNERs (2e53bad)
- Update dia extension (raycast#23383)
- Misc: Update some deps to fix some security warnings (raycast#23552)
- Update CODEOWNERs (f3aece1)
- Update downloads-manager extension (raycast#23553)
- Update CODEOWNERs (306bb93)
- Remove \'ppy\' from contributors list (raycast#23548)
- Update CODEOWNERs (7d72b5f)
- Add whmcs-client-search extension (raycast#22152)
- Update CODEOWNERs (31ef07c)
- Update quick-notes extension (raycast#23537)
- [UploadThing] fix invalid signing secret error (raycast#23534)
- Update CODEOWNERs (e08f97d)
- Update can-i-php extension (raycast#23542)
- [Domainr] add windows support (raycast#23535)
- Update CODEOWNERs (ebd2742)
- Update brave extension (raycast#23543)
- Update CODEOWNERs (42750e3)
- fix(github): filter visited repositories to only show valid entries (raycast#23335)
- Add missing Grid.Item.Accessory properties and example sections (raycast#23526)
- Update instant-domain-search extension (raycast#22839)
- Update CODEOWNERs (274b606)
- Add Disk Usage extension (raycast#23184)
- Update CODEOWNERs (4c80df3)
- [The Noble Quran] Add Windows Support (raycast#23531)
- Fix typo in grid documentation (raycast#23525)
- Update easyvariable extension (raycast#23414)
- Update anonaddy extension (raycast#23520)
0xdhrv pushed a commit that referenced this pull request Jan 8, 2026
- [EasyVariable] Remove incoming arguments
- Pull contributions
- [EasyVariable] Remove incoming arguments
- Update CODEOWNERs (bd2601b)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcb)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da96143)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab171)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9a)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afb)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf7)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed5)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045b)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc450)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247d)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe12)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0e)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc9)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce06)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e94)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fde)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d1)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec645)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b198396)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf18)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4b)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f990)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fed)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b565)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa9)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a26)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a8)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e12)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bf)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e51)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e6)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee725)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a87036)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba79058)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68d)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994a)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f5782)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8da)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa6)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa195)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a709)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a890)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea068)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa33)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd55)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c83)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c2)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (9435718)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156)
- Update search router extension (#23646)
- Update CODEOWNERs (2415142)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec3)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2f)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983f)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d4)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c6)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece1)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb93)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e3)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b606)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df3)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

extension fix / improvement Label for PRs with extension's fix improvements extension: search-domain Issues related to the search-domain extension platform: macOS platform: Windows

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants