Enter solution in ChatGPT

Enter solution in ChatGPT

This extension solves the problem when chatgpt doesn't want to send your question with press enter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Enter solution in ChatGPT",
  "version": "2.0.0",
  "description": "This extension solves the problem when chatgpt doesn't want to send your question with press enter",
  "icons": {
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}