ChatGPT Assistant for Chrome | SidebarGPT

ChatGPT Assistant for Chrome | SidebarGPT

Access ChatGPT AI language model everywhere with SidebarGPT for Chrome. Enhance writing and communication skills with AI tech.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.7",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-sidebar.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-search-helper.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "optional_permissions": [
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "assets/icons/128.png"
  },
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png"
  },
  "options_page": "./options.html",
  "commands": {
    "open-sidebar": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Launch SidebarGPT"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}