Initial build: SaaS Cost Predictor Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-14 18:26:44 +00:00
commit 9082038e29
21 changed files with 2653 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
{
"manifest_version": 3,
"name": "SaaS Cost Predictor",
"version": "1.0.0",
"description": "Forecast and budget your AI-powered subscription spend",
"permissions": [
"storage",
"alarms",
"notifications",
"activeTab"
],
"host_permissions": [
"https://dashboard.stripe.com/*",
"https://console.aws.amazon.com/*",
"https://*.vercel.com/*"
],
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://dashboard.stripe.com/*",
"https://console.aws.amazon.com/*",
"https://*.vercel.com/*"
],
"js": ["src/content.ts"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "src/popup/popup.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"
}
}