Prompt helper

Prompt helper

This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Prompt helper",
  "description": "This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.",
  "version": "1.5",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "settings.html",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://bard.google.com/*",
        "https://beta.character.ai/*",
        "https://poe.com/*",
        "https://claude.ai/*"
      ],
      "js": [
        "dist/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}