ChatGPT for LeetCode

ChatGPT for LeetCode

Generates helpful solutions and explanation of Leetcode problems as an AI companion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ChatGPT for LeetCode",
  "description": "Display ChatGPT response when opening a problem on LeetCode",
  "version": "1.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "webRequest",
    "https://*.openai.com/"
  ],
  "background": {
    "scripts": [
      "background/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.leetcode.com/problems/*"
      ],
      "js": [
        "content-script/index.js"
      ],
      "css": [
        "github-markdown.css",
        "styles.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ac68ac21-4aae-4482-9401-2cc06489d095}"
    }
  }
}