ChatGPT Ctrl+Enter Sender

ChatGPT Ctrl+Enter Sender

Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.0.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "author": "Kamada Masachika",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "storage",
    "https://chat.openai.com/*",
    "https://chatgpt.com/*",
    "https://poe.com/*",
    "https://www.phind.com/*",
    "https://bard.google.com/*",
    "https://www.chatpdf.com/*",
    "https://www.perplexity.ai/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://poe.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://www.phind.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://bard.google.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://www.chatpdf.com/*"
      ],
      "js": [
        "script.js"
      ]
    },
    {
      "matches": [
        "https://www.perplexity.ai/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon/icon16.png",
      "48": "icon/icon48.png",
      "128": "icon/icon128.png"
    }
  }
}