Lean MV3 extension + standalone single-file ingest server that pulls watched sellers' full inventories from the Discogs API into discogs_full (mp_* schema), tracking price changes and sales over time. Successor to pliceclogs/marketwatcher; runs alongside the legacy plice server on a separate port (5057). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "discgod — Discogs seller tracker",
|
|
"version": "1.0",
|
|
"description": "Paste a Discogs API token, pick sellers, and auto-pull their full inventories into the discogs_full Postgres DB over time. Tracks price changes and sales.",
|
|
"permissions": [
|
|
"storage",
|
|
"alarms",
|
|
"activeTab",
|
|
"scripting",
|
|
"notifications"
|
|
],
|
|
"host_permissions": [
|
|
"https://api.discogs.com/*",
|
|
"*://*.discogs.com/*",
|
|
"http://100.91.239.7:5057/*",
|
|
"http://localhost:5057/*"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "discgod",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://www.discogs.com/seller/*",
|
|
"*://www.discogs.com/sell/*"
|
|
],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|