StudyMateAI

StudyMateAI

A browser extension for accessing GPT-3 while browsing or viewing PDF files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StudyMateAI",
  "description": "A browser extension for accessing GPT-3 while browsing or viewing PDF files",
  "version": "1.0.1.4",
  "homepage_url": "https://studym8ai.app/",
  "permissions": [
    "scripting",
    "tabs",
    "activeTab",
    "contextMenus",
    "clipboardWrite",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/popup.html",
        "pngs/StudyMateAI-Logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "pngs/StudyMateAI-Logo.png",
    "96": "pngs/StudyMateAI-Logo.png"
  },
  "action": {
    "default_title": "StudyMateAI",
    "default_icon": {
      "48": "pngs/StudyMateAI-Logo.png",
      "96": "pngs/StudyMateAI-Logo.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+8"
      }
    }
  },
  "options_page": "html/optionsPage.html",
  "options_ui": {
    "page": "html/optionsPage.html",
    "open_in_tab": false
  }
}