ChatGPT Optimizer - Boost Your AI Workflow

ChatGPT Optimizer - Boost Your AI Workflow

Enhance the Chat GPT interface and bring GPT trough all the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Optimizer - Boost Your AI Workflow",
  "description": "Enhance the Chat GPT interface and bring GPT trough all the web!",
  "version": "1.9.3",
  "icons": {
    "16": "/icons/16.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "all_frames": true,
      "css": [
        "main.css"
      ],
      "js": [
        "/assets/js/general.js",
        "/assets/js/nav.js",
        "/assets/js/msgs.js",
        "/assets/js/prompt.js",
        "/assets/js/settings.js",
        "init.js",
        "main.js",
        "/assets/js/library/pdf.min.js",
        "/assets/js/library/html2canvas.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "/popup/popup.html",
    "default_title": "Enable and disable functionality"
  },
  "options_page": "/options/options.html",
  "omnibox": {
    "keyword": "gpt"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "open_chat": {
      "suggested_key": {
        "default": "Ctrl+Shift+O",
        "mac": "Command+Shift+O",
        "chromeos": "Ctrl+Shift+O",
        "linux": "Ctrl+Shift+O"
      },
      "description": "Open Chat"
    }
  }
}