Spellbook for OpenAI Chat

Spellbook for OpenAI Chat

Quickly cast a spell in chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spellbook for OpenAI Chat",
  "description": "Quickly cast a spell in chat",
  "version": "0.1.4",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "openai/action.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}