QuitFree MVP: subscription tracker, budget manager, cancel helper, debt calculator, CSV/JSON export. 13 tests passing.

This commit is contained in:
Bun Bun
2026-06-20 12:28:17 +00:00
commit e01cea8825
20 changed files with 3488 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"manifest_version": 3,
"name": "QuitFree — Subscription & Budget Tracker",
"version": "1.0.0",
"description": "Track subscriptions, cancel in one tap, budget without bank linking. No subscription required.",
"permissions": [
"storage",
"notifications",
"alarms",
"activeTab"
],
"host_permissions": [
"https://*/*"
],
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"service_worker": "src/background/background.ts",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://*/*"],
"js": ["src/content/cancel-helper.ts"],
"run_at": "document_idle"
}
],
"options_page": "src/options/options.html",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}