ChatGPT Powered Search

ChatGPT Powered Search

ChatGPT Powered Search! Now you can get ChatGPT's intelligent and informative responses directly on any website.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "__MSG_appName__",
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/*",
        "*://www.bing.com/*"
      ],
      "js": [
        "./scripts/content.js"
      ],
      "css": [
        "./main-styles/content.css"
      ],
      "all_frames": false
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://chat.openai.com/chat"
      ],
      "js": [
        "./scripts/AIcontent.js"
      ],
      "css": [
        "./styles/ai.css"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon.png",
      "32": "icons/icon.png",
      "64": "icons/icon.png",
      "128": "icons/icon.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://chrome-gpt.net/favicon.ico",
      "is_default": true,
      "keyword": "ChatGPT",
      "name": "ChatGPT Powered Search",
      "search_url": "https://search.chrome-gpt.net/search/?id={chrome.runtime.id}&q={searchTerms}"
    }
  },
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon.png",
    "64": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "declarativeNetRequest",
    "alarms"
  ],
  "host_permissions": [
    "https://search.chrome-gpt.net/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "1.0.8"
}