ChatGPT Prompt Generator - AI Mind

ChatGPT Prompt Generator - AI Mind

Generate prompts for ChatGPT and Claude to get the best AI responses

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 Prompt Generator - AI Mind",
  "version": "1.0.8",
  "description": "Generate prompts for ChatGPT and Claude to get the best AI responses",
  "icons": {
    "12": "icons/icon_12.png",
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "https://www.aimind.so/*",
    "https://chat.openai.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "AI Mind Prompt Generator"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "config.js",
        "inject.js",
        "readability.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}