ChatGPT Prompt Assistant

ChatGPT Prompt Assistant

This tool improves efficiency when conversing with ChatGPT by providing templates, quick replies, and shortcut functions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "author": "Joe",
  "version": "1.2.3",
  "default_locale": "en",
  "icons": {
    "16": "images/icon/16.png",
    "32": "images/icon/32.png",
    "48": "images/icon/48.png",
    "128": "images/icon/128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://chat.openai.com/*",
        "https://gemini.google.com/app/*",
        "https://gemini.google.com/share/continue/*",
        "https://gemini.google.com/u/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/auth/login"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}