Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "FSA Helper",
"description": "Automate FSA & HSA reimbursements from Amazon. Learn more at fsahelper.com.",
"version": "1.0.4",
"homepage_url": "https:\/\/fsahelper.com",
"privacy_policy": "https:\/\/fsahelper.com\/privacy",
"permissions": [
"scripting",
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/fsahelper.com\/*",
"https:\/\/www.amazon.com\/*",
"https:\/\/amazon.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png"
}
},
"icons": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.amazon.com\/your-orders*",
"https:\/\/www.amazon.com\/gp\/css\/order-history*",
"https:\/\/www.amazon.com\/gp\/your-account\/order-history*",
"https:\/\/www.amazon.com\/gp\/css\/*"
],
"js": [
"html2canvas.min.js",
"content.js"
],
"run_at": "document_idle"
}
],
"externally_connectable": {
"matches": [
"https:\/\/fsahelper.com\/*",
"http:\/\/localhost:3000\/*",
"http:\/\/127.0.0.1:3000\/*"
]
},
"web_accessible_resources": [
{
"resources": [
"fsa_keywords.json"
],
"matches": [
"https:\/\/www.amazon.com\/*",
"https:\/\/amazon.com\/*"
]
}
]
}