StudyBot - Answers in One Click

StudyBot - Answers in One Click

Introducing "StudyBot" - your personal academic study buddy! StudyBot is not just an extension; it's a revolution in how you…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StudyBot - Answers in One Click",
  "version": "1.1",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.studybot.education/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "components/spinner.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}