ChatGPT Code Runner

ChatGPT Code Runner

Run and save the code in ChatGPT. Supports upto 70+ languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Code Runner",
  "version": "1.0",
  "description": "Run and save the code in ChatGPT. Supports upto 70+ languages.",
  "permissions": [
    "storage",
    "clipboardRead"
  ],
  "host_permissions": [
    "https://api.jdoodle.com/v1/execute",
    "*://*/*"
  ],
  "options_page": "options/options.html",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "48": "icons/48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "scripts/content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}