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": "Augustus - Prediction Market AI",
"description": "Let your edge find you, wherever you go. Market detection, smart search, sentiment analysis, and arbitrage opportunities.",
"version": "1.0.0",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"activeTab",
"sidePanel",
"storage",
"contextMenus",
"notifications"
],
"host_permissions": [
"https:\/\/polymarket.com\/*",
"https:\/\/*.polymarket.com\/*",
"https:\/\/kalshi.com\/*",
"https:\/\/*.kalshi.com\/*",
"https:\/\/kairos.win\/*",
"https:\/\/*.kairos.win\/*",
"https:\/\/augustus-xi.vercel.app\/*",
"https:\/\/augustus-production.up.railway.app\/*",
"https:\/\/*\/*"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "Open Augustus",
"default_icon": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"128": "icon\/128.png"
}
},
"omnibox": {
"keyword": "aug"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Open Augustus panel"
},
"quick-search": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Quick search markets"
},
"command-palette": {
"suggested_key": {
"default": "Ctrl+K",
"mac": "Command+K"
},
"description": "Open command palette"
}
},
"web_accessible_resources": [
{
"resources": [
"icon\/*.png",
"icon\/16.png",
"icon\/32.png",
"icon\/48.png",
"icon\/96.png",
"icon\/128.png"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"content-scripts\/browse-with-you.js"
]
},
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"content-scripts\/command-palette.js"
]
},
{
"matches": [
"http:\/\/localhost:3000\/*",
"http:\/\/localhost:5173\/*",
"https:\/\/augustus-xi.vercel.app\/*",
"https:\/\/beta.kairos.win\/*",
"https:\/\/kairos.win\/*"
],
"run_at": "document_start",
"js": [
"content-scripts\/kairos-auth.js"
]
},
{
"matches": [
"https:\/\/*.kalshi.com\/*",
"https:\/\/kalshi.com\/*"
],
"run_at": "document_idle",
"js": [
"content-scripts\/kalshi.js"
]
},
{
"matches": [
"https:\/\/*.polymarket.com\/*",
"https:\/\/polymarket.com\/*"
],
"run_at": "document_idle",
"js": [
"content-scripts\/polymarket.js"
]
}
]
}