StudyBotPro

StudyBotPro

An AI study companion and aid for college students

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StudyBotPro",
  "version": "1.12",
  "description": "An AI study companion and aid for college students",
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus",
    "storage",
    "cookies"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "select-area.js",
        "sm/pdf.min.js",
        "sm/mammoth.browser.min.js",
        "sm/pdf.worker.min.js",
        "images/*",
        "fonts/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "dist/background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/mini.css"
      ],
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}