GPT Code Reviewer

GPT Code Reviewer

This extension enables users to upload files for ChatGPT to analyze and summarize.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT Code Reviewer",
  "version": "3.6",
  "description": "This extension enables users to upload files for ChatGPT to analyze and summarize.",
  "icons": {
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_title": "GPT Code Reviewer"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "tabs"
  ]
}