InterviewPrep AI

InterviewPrep AI

The Interview prep Mock Tool for improving interview skills, enhancing communication abilities, and boosting confidence.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.6",
  "name": "InterviewPrep AI",
  "short_name": "Interview Copilot",
  "description": "The Interview prep Mock Tool for improving interview skills, enhancing communication abilities, and boosting confidence.",
  "background": {
    "service_worker": "assets/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*-*-*"
      ],
      "js": [
        "assets/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "InterviewPrep AI",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+9",
        "mac": "Command+Shift+9"
      }
    },
    "run-murmurr": {
      "suggested_key": {
        "default": "Ctrl+Shift+0",
        "mac": "Command+Shift+0"
      },
      "description": "Run Extension on the current page."
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; base-uri 'self'; form-action 'self'; frame-ancestors 'self';"
  },
  "host_permissions": [
    "*://meet.google.com/*-*-*",
    "http://localhost:3000/",
    "https://alinterviewprep.com/"
  ],
  "optional_host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "default_locale": "en",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-128.png",
    "128": "icon-512.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "tabCapture",
    "contextMenus",
    "cookies"
  ]
}