A browser extension that allows you to scrape your Discogs collection and search for albums on YouTube Music.
- 🎵 Scrape your entire Discogs collection with one click
- 🔍 Direct links to search each album on YouTube Music
- 💾 Export collection as JSON file
- 🎨 Clean, user-friendly interface
- ⚡ Fast and lightweight
- Download or clone this repository
- Open your browser and navigate to:
- Chrome:
chrome://extensions/ - Edge:
edge://extensions/ - Brave:
brave://extensions/
- Chrome:
- Enable Developer mode (toggle in the top-right corner)
- Click Load unpacked
- Select the
discogs-scraperfolder - The extension is now installed!
- Download or clone this repository
- Rename
manifest-firefox.jsontomanifest.json(backup the original first) - Navigate to
about:debugging#/runtime/this-firefox - Click Load Temporary Add-on
- Select the
manifest.jsonfile from the extension folder - The extension is now installed!
Note: Firefox temporary add-ons are removed when you close the browser. For permanent installation, you need to sign the extension through Mozilla's AMO.
-
Navigate to your Discogs collection page:
https://www.discogs.com/user/YOUR_USERNAME/collection -
Click the "Scrape Collection" button in the top-right corner
-
A popup will appear showing:
- Artist name
- Album title
- YouTube Music search link
-
Your collection will also be automatically downloaded as a JSON file
-
Click on "Search" next to any album to find it on YouTube Music
-
Close the popup by:
- Clicking the × button
- Clicking outside the popup
The extension adds a scrape button to your Discogs collection page and displays results in a clean table with direct YouTube Music links.
discogs-scraper/
├── manifest.json # Chrome/Edge configuration
├── manifest-firefox.json # Firefox configuration
├── content.js # Main extension logic
├── styles.css # Styling
├── icons/ # Extension icons
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
└── README.md # This file
- Edit the files in the extension folder
- Reload the extension:
- Chrome/Edge: Click the refresh icon on the extension card
- Firefox: Click the Reload button
You can customize the appearance by editing styles.css:
- Change colors (currently Discogs orange:
#ff6600) - Adjust popup size
- Modify table styling
- Manifest Version: V3 (Chrome/Edge), V2 (Firefox)
- Permissions: Runs only on Discogs collection pages
- No external dependencies: Pure vanilla JavaScript
- Privacy: No data is sent to external servers
- ✅ Chrome (Manifest V3)
- ✅ Edge (Manifest V3)
- ✅ Brave (Manifest V3)
- ✅ Firefox (Manifest V2 - use
manifest-firefox.json) - ✅ Opera (Manifest V3)
Feel free to submit issues and pull requests!
MIT License - feel free to use and modify as needed.
- Initial release
- Scrape Discogs collection
- Export to JSON
- YouTube Music integration
- Responsive popup interface
- The extension relies on Discogs' CSS class names which may change
- Currently uses
[class*="titleAndArtist"]selector which should be relatively stable
- Add Spotify search links
- Add Apple Music search links
- Filter and sort options
- Export to CSV format
- Dark mode support
- Multiple collection support
If you find this extension useful, please star the repository! ⭐