Code Analyzer Firefox

Examine source code of Code Analyzer

Inspect and view changes in Code Analyzer source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "manifest_version": 3,
  "name": "Code Analyzer",
  "version": "2.0.0",
  "description": "Analyzes C++ and Python competitive programming solutions using AI. Detects complexity, bottlenecks, and suggests optimizations. Bring your own Groq API key.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://api.groq.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/problems/*",
        "https://codeforces.com/problemset/problem/*/*",
        "https://codeforces.com/contest/*/problem/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "code-analyzer@local.dev",
      "strict_min_version": "140.0",
      "data_collection_permissions": {
        "required": [
          "none"
        ]
      }
    }
  },
  "icons": {
    "16": "icons/image16.png",
    "48": "icons/image48.png",
    "128": "icons/image128.png"
  }
}

Best Code Analyzer Alternatives

Here are some Firefox add-ons that are similar to Code Analyzer: