ChatGPT Helper

ChatGPT Helper

Create text replacements of ChatGPT prompts

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 Helper",
  "version": "0.3.1",
  "description": "Create text replacements of ChatGPT prompts",
  "author": "Tuan Le",
  "icons": {
    "16": "icons/chatgpt-16.png",
    "48": "icons/chatgpt-48.png",
    "128": "icons/chatgpt-128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options/options.html",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/chatgpt-16.png",
      "48": "icons/chatgpt-48.png",
      "128": "icons/chatgpt-128.png"
    },
    "default_title": "ChatGPT Helper"
  }
}