gpt2pg

gpt2pg

Running ChatGPT queries on Postgres

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "gpt2pg",
  "version": "0.2.0",
  "description": "Running ChatGPT queries on Postgres",
  "permissions": [
    "tabs",
    "storage",
    "https://chat.openai.com/chat/*"
  ],
  "host_permissions": [
    "https://chat.openai.com/chat/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/elephant-icon.png"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/elephant-icon.png",
      "24": "assets/elephant-icon.png",
      "32": "assets/elephant-icon.png"
    },
    "default_title": "Postgres for ChatGPT",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}