44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "SimpleScan Solo - Freelancer Receipts",
|
|
"version": "0.1.0",
|
|
"description": "Dead-simple receipt capture for freelancers. No team bloat, just capture, categorize, export.",
|
|
"permissions": ["storage", "activeTab", "scripting"],
|
|
"host_permissions": [
|
|
"https://mail.google.com/*",
|
|
"https://outlook.live.com/*",
|
|
"https://outlook.office.com/*",
|
|
"https://outlook.office365.com/*"
|
|
],
|
|
"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.ts",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://mail.google.com/*",
|
|
"https://outlook.live.com/*",
|
|
"https://outlook.office.com/*",
|
|
"https://outlook.office365.com/*"
|
|
],
|
|
"js": ["src/content/email-scanner.ts"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"options_page": "options.html",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|