AlgoHack

AlgoHack

Turn any Leetcode task into the live mock interview

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AlgoHack",
  "description": "Turn any Leetcode task into the live mock interview",
  "version": "3.5.0",
  "action": {
    "default_popup": "popup.html",
    "default_title": "AlgoHack",
    "default_icon": "brain_128x128.png"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "brain_16x16.png",
    "48": "brain_48x48.png",
    "128": "brain_128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "audioDetector/wasm/audio_wasm_internal.js",
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://algohack.app/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "audioDetector/wasm/*",
        "audioDetector/yamnet.tflite"
      ],
      "matches": [
        "https://leetcode.com/*"
      ]
    }
  ]
}