EasyInterview: ChatGPT for Google Meet

EasyInterview: ChatGPT for Google Meet

EasyInterview will help you pass the interview and answer any questions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EasyInterview: ChatGPT for Google Meet",
  "description": "EasyInterview will help you pass the interview and answer any questions.",
  "version": "1.2.0",
  "author": "[email protected]",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon.png",
      "24": "icon.png",
      "32": "icon.png",
      "48": "icon.png",
      "128": "128.png"
    }
  },
  "options_page": "popup.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "select2.min.css",
        "style.css"
      ]
    }
  ],
  "host_permissions": [
    "https://easyinterview.site/*"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "64": "icon.png",
    "128": "128.png"
  }
}