Skip to content

Commit ef0d5dc

Browse files
Add favoro extension (#25133)
* Add favoro extension - chore: capitalize command titles and subtitles - chore: update author name and dependencies - prepare release - cleanup - cleanup - cleanup - replace logo - cleanup - chore: add vitest testing framework and cache constants - docs(plans): add feature plans and review documentation - feat(search): add bookmark search UI with grouped results - feat(cache): implement data caching with LocalStorage - feat(search): implement improved search algorithm with AND logic - refactor: clean up OAuth implementation after code review - feat: add OAuth PKCE authentication for Favoro API - chore: initialize Raycast extension project - chore: add TypeScript/Raycast project guidelines and commands * fix: resolve TypeScript compilation errors * Update favoro extension - chore: add store screenshots - feat(logout): add standalone logout command * Update CHANGELOG.md and optimise images --------- Co-authored-by: raycastbot <bot@raycast.com>
1 parent ce3f5b4 commit ef0d5dc

37 files changed

+7673
-0
lines changed

extensions/favoro/.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# Raycast specific files
7+
raycast-env.d.ts
8+
.raycast-swift-build
9+
.swiftpm
10+
compiled_raycast_swift
11+
compiled_raycast_rust
12+
13+
# misc
14+
.DS_Store
15+
16+
# dev-setup
17+
/.claude
18+
/.guidelines
19+
/docs
20+
CLAUDE.md

extensions/favoro/.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": false
4+
}

extensions/favoro/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# FAVORO Changelog
2+
3+
## [Initial Version] - 2026-02-06

extensions/favoro/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# FAVORO
2+
3+
Access your FAVORO bookmarks directly from Raycast, even faster
7.06 KB
Loading

extensions/favoro/eslint.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const { defineConfig } = require("eslint/config");
2+
const raycastConfig = require("@raycast/eslint-config");
3+
4+
module.exports = defineConfig([
5+
...raycastConfig,
6+
]);
1.05 MB
Loading
1.06 MB
Loading

0 commit comments

Comments
 (0)