StudyPal AI - Ultimate Homework Helper

StudyPal AI - Ultimate Homework Helper

Quickly find the answers to all your questions with StudyPal AI.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StudyPal AI - Ultimate Homework Helper",
  "version": "2.6",
  "description": "Quickly find the answers to all your questions with StudyPal AI.",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/",
        "https://*/"
      ],
      "js": [
        "ExtPay.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://api.openai.com/"
  ],
  "icons": {
    "16": "logo512.png",
    "48": "logo512.png",
    "128": "logo512.png"
  },
  "action": {
    "default_icon": "logo512.png",
    "default_popup": "popup.html"
  }
}