SublimeGPT: ChatGPT Everywhere

SublimeGPT: ChatGPT Everywhere

Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SublimeGPT: ChatGPT Everywhere",
  "short_name": "SublimeGPT",
  "version": "0.2.0",
  "description": "Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.openai.com/*"
  ],
  "action": {
    "default_title": "Open Chat"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "app/*"
      ]
    }
  ],
  "commands": {
    "open-app": {
      "suggested_key": {
        "default": "Ctrl+Up",
        "mac": "Command+Up"
      },
      "description": "Open chat in the current tab."
    }
  }
}