SushanthUV commited on
Commit
cfa15bf
·
1 Parent(s): f0c7697

Update backend URL to add for chrome extension

Browse files
extension/background.js CHANGED
@@ -1,3 +1,6 @@
1
  chrome.runtime.onInstalled.addListener(() => {
2
- chrome.storage.local.set({ flowpilotBackendUrl: "http://localhost:8000/api" });
 
 
 
3
  });
 
1
  chrome.runtime.onInstalled.addListener(() => {
2
+ chrome.storage.local.set({
3
+ flowpilotBackendUrl:
4
+ "https://flowpilot-backend-or5x6kqnuq-uc.a.run.app/api",
5
+ });
6
  });
extension/manifest.json CHANGED
@@ -4,7 +4,7 @@
4
  "version": "0.1.0",
5
  "description": "AI workflow builder for Gmail-based small businesses.",
6
  "permissions": ["storage", "activeTab", "scripting"],
7
- "host_permissions": ["https://mail.google.com/*", "http://localhost:8000/*"],
8
  "background": {
9
  "service_worker": "background.js"
10
  },
 
4
  "version": "0.1.0",
5
  "description": "AI workflow builder for Gmail-based small businesses.",
6
  "permissions": ["storage", "activeTab", "scripting"],
7
+ "host_permissions": ["https://mail.google.com/*", "http://localhost:8000/*","https://flowpilot-backend-or5x6kqnuq-uc.a.run.app/*"],
8
  "background": {
9
  "service_worker": "background.js"
10
  },