Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "StudySesh - Your Personal Study Workspace",
"version": "1.0.0",
"description": "Your all-in-one study assistant to help you learn faster and stay focused. Get AI homework help, summaries, flashcards, and more!",
"permissions": [
"storage",
"cookies",
"tabs",
"notifications",
"sidePanel",
"contextMenus",
"scripting",
"activeTab"
],
"host_permissions": [
"<all_urls>",
"https:\/\/studysesh.app\/*",
"https:\/\/*.supabase.co\/*",
"https:\/\/studysesh-chrome.onrender.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/studysesh.app\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_title": "StudySesh",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"options_page": "options.html",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"snipContent.js",
"pdf.worker.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}