{ "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" } }