Stop Searching. Start Diggin. A Chrome Extension that allows you to highlight text on any website, right-click, and instantly see the current market price for that record on Discogs.
- Context Menu Integration: Adds a "Search Vinyl for..." option to your right-click menu.
- Smart Formatting: Defaults search to Vinyl format and Album (LP) to avoid CD or Single clutter.
- Market Data: Fetches real-time "Market Floor" pricing (Lowest Price) from the Discogs Marketplace.
- Mint Condition Estimates: Attempts to fetch suggested pricing for Mint (M) copies when available.
- Smart Positioning: Popup automatically renders above or below text based on available screen space.
- Non-Intrusive: Injects zero CSS into the host page until activated.
Since this extension is local (or pending Web Store approval), install it via Developer Mode:
- Clone this repo.
- Open Chrome and navigate to
chrome://extensions. - Toggle Developer mode (top right switch).
- Click Load unpacked.
- Select the root folder of this project.
The extension requires a Personal Access Token from Discogs to fetch pricing data.
- Go to Discogs Developer Settings.
- Generate a new token.
- Open
background.jsand replace the placeholder:const DISCOGS_TOKEN = "YOUR_TOKEN_HERE";
manifest.json: Chrome Extension config & permissions(contextMenus,activeTab,scripting).background.js: Handles the API logic (Search -> Get ID -> Get Price).content.js: Handles the UI injection (Floating Popup, Positioning, Animations).icon.png: Extension icon.
This extension collects no user data. It only processes the text string specifically highlighted by the user to perform a search query via the Discogs API. No history is stored.