ChatGPT Enter Key Control

ChatGPT Enter Key Control

Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "1.0.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/enter128.png"
    }
  },
  "icons": {
    "128": "icons/enter128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://poe.com/*",
    "https://www.phind.com/*",
    "https://bard.google.com/*",
    "https://www.chatpdf.com/*",
    "https://www.perplexity.ai/*"
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://poe.com/*",
        "https://www.phind.com/*",
        "https://bard.google.com/*",
        "https://www.chatpdf.com/*",
        "https://www.perplexity.ai/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}