SearchAI

SearchAI

Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SearchAI",
  "version": "1.2.2",
  "description": "Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses.",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://localhost:3000/*",
    "https://aigptextension.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "ru",
  "chrome_url_overrides": {
    "newtab": "./startPage.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*searchai*",
        "*://aigptextension.com/searchai*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}