ChatGPT: Prompt Mate

ChatGPT: Prompt Mate

A powerful tool for generating high-quality prompts for ChatGPT in seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "GPT Prompt mate",
  "name": "ChatGPT: Prompt Mate",
  "version": "1.1",
  "manifest_version": 3,
  "description": "A powerful tool for generating high-quality prompts for ChatGPT in seconds.",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Open the popup"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "css": [
        "/static/css/content.css",
        "/static/css/popup.css"
      ]
    }
  ],
  "icons": {
    "16": "logo192light.png",
    "48": "logo192light.png",
    "128": "logo512light.png",
    "512": "logo512light.png"
  }
}