Chatgpt assist

Chatgpt assist

No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.4",
  "short_name": "Chatgpt assist",
  "name": "Chatgpt assist",
  "action": {},
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "style.css",
        "modal.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*.stackgpt.com/*"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}