Initial build: SaaS Cost Predictor Chrome extension MVP
This commit is contained in:
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user