RunGPT: Execute ChatGPT Code

RunGPT: Execute ChatGPT Code

RunGPT: Execute ChatGPT Code - run/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RunGPT: Execute ChatGPT Code",
  "version": "1.34",
  "manifest_version": 3,
  "description": "RunGPT: Execute ChatGPT Code - run/execute code directly in ChatGPT with a single click! Web requests, data parsing, plots & more!",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "codemirror.js",
        "jszip.min.js",
        "contentScript.js",
        "highlight.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "codemirror.js",
        "jszip.min.js",
        "highlight.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "script-src": [
      "'self'",
      "file:"
    ]
  }
}