CodeMate AI Assistant

CodeMate AI Assistant

Reading Code is hard, then understanding it makes it more difficult. CodeMate explains you what the code does in plain English

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CodeMate AI Assistant",
  "version": "0.0.0.10",
  "manifest_version": 3,
  "description": "Reading Code is hard, then understanding it makes it more difficult. CodeMate explains you what the code does in plain English",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png",
    "default title": "CodeMate AI Assistant"
  },
  "icons": {
    "48": "CodeMate Logo- 48.png",
    "128": "logo.png"
  }
}