SushanthUV commited on
Commit
83cbd12
·
1 Parent(s): 5c95b8d

added locahost to test

Browse files
extension/background.js CHANGED
@@ -1,6 +1,5 @@
1
  chrome.runtime.onInstalled.addListener(() => {
2
  chrome.storage.local.set({
3
- flowpilotBackendUrl:
4
- "https://flowpilot-backend-or5x6kqnuq-uc.a.run.app/api",
5
  });
6
  });
 
1
  chrome.runtime.onInstalled.addListener(() => {
2
  chrome.storage.local.set({
3
+ flowpilotBackendUrl: "http://localhost:8000/api",
 
4
  });
5
  });
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/*","https://flowpilot-backend-or5x6kqnuq-uc.a.run.app/*"],
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/*"],
8
  "background": {
9
  "service_worker": "background.js"
10
  },