ChatGPT+

ChatGPT+

Useful and customizable prompts for ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT+",
  "version": "0.0.3.0",
  "description": "Useful and customizable prompts for ChatGPT",
  "manifest_version": 3,
  "icons": {
    "16": "icons/iconA16.png",
    "48": "icons/NewiconA48.png",
    "128": "icons/NewiconA128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "commands"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/@webcomponents/custom-elements/custom-elements.min.js",
        "content.js",
        "popup_world.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "ChatGPT+"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "commands": {
    "prompt-on-the-fly": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Launches the Prompt-on-the-Fly functionality"
    },
    "chatGPT": {
      "suggested_key": {
        "default": "Alt+G"
      },
      "description": "Launches the ChatGPT functionality"
    }
  }
}