codereview.gpt

codereview.gpt

Reviews your Pull Requests using ChatGPT so that you can pretend to work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "name": "codereview.gpt",
  "version": "0.3.0",
  "description": "Reviews your Pull Requests using ChatGPT so that you can pretend to work",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "codereview.gpt",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "host_permissions": [
    "https://*.githubusercontent.com/",
    "https://gitlab.com/"
  ],
  "optional_host_permissions": [
    "https://*/*"
  ]
}