Files
ai-service-reliability-moni…/manifest.json
T

52 lines
1.3 KiB
JSON

{
"manifest_version": 3,
"name": "AI Service Reliability Monitor & Failover Switch",
"version": "1.0.0",
"description": "Monitor AI service health across ChatGPT, Claude, Gemini, and Grok. Track usage limits, get alerts, and auto-suggest failover when services are down.",
"permissions": [
"storage",
"activeTab",
"tabs",
"alarms",
"notifications"
],
"host_permissions": [
"https://chat.openai.com/*",
"https://chatgpt.com/*",
"https://claude.ai/*",
"https://gemini.google.com/*",
"https://grok.com/*",
"https://api.openai.com/*",
"https://api.anthropic.com/*"
],
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*",
"https://chatgpt.com/*",
"https://claude.ai/*",
"https://gemini.google.com/*",
"https://grok.com/*"
],
"js": ["src/content.ts"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}