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": "Jira Compass",
"version": "1.1.0",
"description": "AI-powered Jira ticket analysis tool for smarter project management decisions. Generate insights and track project health.",
"short_name": "Jira Compass",
"author": "Jira Compass Team",
"homepage_url": "https:\/\/github.com\/jira-compass\/jira-compass",
"permissions": [
"storage",
"system.display",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/*.atlassian.net\/*",
"https:\/\/generativelanguage.googleapis.com\/*",
"https:\/\/api.openai.com\/*",
"https:\/\/api.anthropic.com\/*"
],
"action": {
"default_title": "Jira Compass - AI-powered ticket analysis",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/*.png",
"help.html",
"sidepanel.html",
"sidepanel.js"
],
"matches": [
"<all_urls>"
]
}
],
"minimum_chrome_version": "114"
}