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": "SmartLearning.ai - GitHub Analyzer",
"version": "1.0.2",
"description": "AI-powered GitHub repository analysis with code search and issue tracking",
"permissions": [
"activeTab",
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/github.com\/*",
"https:\/\/smartlearning-ai-helper.onrender.com\/*",
"https:\/\/smartlearning-ai-helper-1.onrender.com\/*",
"http:\/\/localhost:8000\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*"
],
"js": [
"content.js"
],
"css": [
"sidebar.css"
]
}
],
"action": {
"default_title": "Toggle SmartLearning.ai Sidebar",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"https:\/\/github.com\/*"
]
}
]
}