OpenAI copy prompts and others to clipboard

OpenAI copy prompts and others to clipboard

OpenAI copy prompts and others to clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OpenAI copy prompts and others to clipboard",
  "short_name": "openAICopyToClip",
  "version": "0.1.0",
  "description": "OpenAI copy prompts and others to clipboard",
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://beta.openai.com/playground/*",
        "http://beta.openai.com/playground/*"
      ],
      "run_at": "document_end",
      "js": [
        "script.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+E",
        "mac": "Command+E",
        "chromeos": "Ctrl+E",
        "linux": "Ctrl+E"
      }
    }
  }
}