← back to Govarbitrage
extension/manifest.json
20 lines
{
"manifest_version": 3,
"name": "GovArbitrage Capture",
"version": "0.1.0",
"description": "Capture a government-surplus auction page (GovDeals, Public Surplus, GSA Auctions, or generic) and send the extracted listing into the GovArbitrage app.",
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": [
"https://www.govdeals.com/*",
"https://www.publicsurplus.com/*",
"https://gsaauctions.gov/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "GovArbitrage Capture"
},
"background": {
"service_worker": "background.js"
}
}