AI Homework Helper - Apex Vision AI

AI Homework Helper - Apex Vision AI

Homework & Test Answering AI Extension - Get instant AI-powered homework help on McGraw Hill, Canvas, and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AI Homework Helper - Apex Vision AI",
  "description": "Homework & Test Answering AI Extension - Get instant AI-powered homework help on McGraw Hill, Canvas, and more",
  "version": "4.1.2",
  "action": {
    "default_popup": "index.html",
    "default_width": 335,
    "default_height": 410,
    "default_icon": "./icon512.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "<all_urls>"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "MacCtrl+Q"
      }
    },
    "toggle_toolbar": {
      "description": "Toggle the visibility of the toolbar",
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "MacCtrl+Shift+Z"
      }
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/icon48.png",
        "images/apex48.png",
        "images/apex128.png",
        "images/sun48.png",
        "images/moon48.png",
        "images/screenshot64.png",
        "images/present48.png"
      ]
    }
  ]
}