GPT SidePanel

GPT SidePanel

Providing the best GPT extension experience, empowering your productivity with your own prompts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GPT SidePanel",
  "description": "Providing the best GPT extension experience, empowering your productivity with your own prompts",
  "version": "1.0.8",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "action": {
    "default_title": "Open GPT SidePanel [Alt(Option) + G]"
  },
  "host_permissions": [
    "https://*.openai.com/",
    "https://*.bing.com/",
    "https://*.poe.com/",
    "https://*.google.com/"
  ],
  "permissions": [
    "cookies",
    "storage",
    "contextMenus",
    "tabs",
    "unlimitedStorage",
    "sidePanel"
  ],
  "optional_permissions": [
    "background"
  ],
  "minimum_chrome_version": "114",
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "js": [
        "shared.js",
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+G",
        "mac": "Alt+G",
        "windows": "Alt+G",
        "chromeos": "Alt+G",
        "linux": "Alt+G"
      },
      "description": "Press Alt(Option) + G to open GPT SidePanel"
    }
  }
}