Neeva AI Search

Neeva AI Search

AI powered, instant answers with citations unlike ChatGPT or GPT4

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "1.4.0",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "background": {
    "persistent": true,
    "page": "html/background.html"
  },
  "icons": {
    "16": "icons/extension-icon.png",
    "32": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/extension-icon-128.png"
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "incognito": "split",
  "commands": {
    "open-incognito": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "Launch Neeva incognito mode"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+J",
        "mac": "Command+Shift+J"
      }
    }
  },
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "permissions": [
    "storage"
  ],
  "optional_permissions": [],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Neeva",
      "keyword": "Neeva Search",
      "search_url": "https://neeva.com/search?q={searchTerms}&src=nvobar",
      "favicon_url": "https://neeva.com/favicon.png",
      "suggest_url": "https://neeva.com/suggest?q={searchTerms}&src=nvobar",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://neeva.com/*"
      ],
      "js": [
        "/js/neevaContentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://neeva.com/*"
    ]
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}