Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
.DS_Store
.env
backend/.env
extensions/.env
extensions/node_modules
extensions/dist
.env.local
.env.development.local
.env.test.local
Expand Down
5 changes: 4 additions & 1 deletion backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
PORT=3001
NODE_ENV=development



# Frontend URL for CORS (use comma-separated for multiple origins)
CORS_ORIGIN=http://localhost:3000
# Add your Chrome Extension ID after loading unpacked from chrome://extensions
CORS_ORIGIN=http://localhost:3000,chrome-extension://your_extension_id_here
Comment thread
coderabbitai[bot] marked this conversation as resolved.

# Clerk Authentication (get from clerk.com dashboard)
CLERK_SECRET_KEY=sk_test_...
Expand Down
5 changes: 0 additions & 5 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions extensions/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Clerk Authentication (Extension)
VITE_CLERK_PUBLISHABLE_KEY=pk_test_your_key_here

# Backend API URL
VITE_API_BASE=http://localhost:3001
30 changes: 30 additions & 0 deletions extensions/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"manifest_version": 3,
"name": "FutureTracker Saver",
"version": "1.0.0",
"description": "Save job/internship listings to FutureTracker",
"action": {
"default_popup": "src/popup/index.html",
"default_icon": { "16": "icons/16.png", "48": "icons/48.png", "128": "icons/128.png" }
},
"icons": { "16": "icons/16.png", "48": "icons/48.png", "128": "icons/128.png" },
"permissions": ["activeTab", "storage", "scripting", "cookies"],
"host_permissions": [
"https://futuretracker.online/*",
"https://*.onrender.com/*",
"http://localhost:3000/*",
"http://localhost:3001/*",
"https://*.clerk.accounts.dev/*"
],
"background": { "service_worker": "src/background.js", "type": "module" },
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": ["src/content.js"],
"run_at": "document_idle"
}
]
}
Loading
Loading